Best Blackhat Forum

Full Version: [PURCHASED] A V A D A, NEWSPAPER, X, BE T H E M E and M O R E
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
Dear when i go to WP Dashboard > Appearance > Edit > Choose Avad@ theme > Choose file: class-avad@-product-registration.php

i can not find "class-avad@-product-registration.php" this file there and also i have check include folder i did not find this file.

I have check older version 5.0.5 this file was there.

I Need to null the newer version of Avada to install its demo that i want.

If any one have solutions how to null Avada 5.1.4 please share here.

(03-23-2017 09:25 PM)moonhwanii Wrote: [ -> ]
(03-23-2017 08:36 PM)aks85 Wrote: [ -> ]Thank you for your solution.

As i have installed fresh version of Avada Version 5.1.4 can you tell me how to null this version as this version don't have class-avada-product-registration.php in include folder.

Please tell me how to null this version.

Thank you in advance.

(11-23-2016 06:13 PM)blacksuitboy Wrote: [ -> ]@sirdree's solution @
Quote:http://bestblackhatforum.com/Thread-PURC...pid1875273
no more working from v5.0.3 in my case and I have to try mine. Anyone applied and still got it with @sirdree's solution?
Thanks @kamru for continuously updating the theme. Rep++
Manual DIY null solution revisited:
WP Dashboard > Appearance > Edit > Choose Avad@ theme > Choose file: class-avad@-product-registration.php > Scroll mouse to the end of the file > change all returning value "false" to "true" > Save > DONE!

-- Before --
Code:
public static function is_registered() {
        // If no token is set, the product is not registered.
        if ( empty( self::$token ) ) {
            return false;
        } elseif ( self::$registered ) {
            return true;
        } elseif ( get_site_transient( 'avada_envato_api_down' ) ) {
            return true;
        } else {
            return false;
        }
    }

-- After --
Code:
public static function is_registered() {
        // If no token is set, the product is not registered.
        if ( empty( self::$token ) ) {
            return true;
        } elseif ( self::$registered ) {
            return true;
        } elseif ( get_site_transient( 'avada_envato_api_down' ) ) {
            return true;
        } else {
            return true;
        }
    }

This File not find includes folder.
(03-23-2017 02:59 AM)kamru Wrote: [ -> ]It should be there, under a tgm something folder.
Superfly — Responsive WordPress Menu Plugin is not include.
But thank you anyway kamru
is there an "extensions" folder in theme?
Same here I couldn't find the file class-avad@-product-registration.php

Anybody can help me please?
Thanks in advance
Well, they updated it already. The database trick doesnt work anymore too.
(03-22-2017 05:32 AM)kamru Wrote: [ -> ]Be 17.3
Magic Button :
https://my.pcloud.com/publink/show?code=XZ1m5UZycKv1nzIG9jHC0ss8nwh1FxgWwF7

Hi kamru

U have the latest Be 17.4?
Thanks :)
Hi kamru

U have the install package for Betheme, Rev Slider templates for demo pages?
Firstly, I installed Av@da v5.0.5, I both used sirdree's method, which is:

sirdree Wrote:1: go to your phpmyadmin
2: select database name where your site is installed
3: select table wp_options then select SQL (to open sql commands to run)
4: copy&paste this and run:
INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES
('avada_registration', 'a:1:{s:5:"token";s:10:"1234567890";}', 'yes'),
('avada_registered', '1', 'yes');

and my method, which is:

Quote:1. Go to > http://yourdomain.com/wp-admin/theme-editor.php

2. Choose theme Avada to edit

3. Search for the file: "Avada: class-avada-product-registration.php (includes/class-avada-product-registration.php)" to edit

4. Press F3 on your browser, type "$registered" (without "")

5. Change the found string: $registered = false; > $registered = true;

6. Next, find the function "public static function is_registered()"

7. Change all the return command: return false; > return true;

8. Enjoy!

Then, I downloaded kamru's share of Av@da v5.1.4
I activated theme twenty seventeen to deactivated Av@da
I deleted Av@da theme folder (not Av@da child theme folder) from my VPS
I came back to Wordpress, chose to install new theme and uploaded Av@da v5.1.4
I activated Av@da theme again.

Voila! I still have Av@da v5.1.4 with patch and downloadable theme demo.

>> So the temporary solution is to install v5.0.5 and nulled it first with the above methods then manually update to v5.1.4
Hope it work!

(03-24-2017 05:57 PM)kamru Wrote: [ -> ]Well, they updated it already. The database trick doesnt work anymore too.
(03-29-2017 06:34 PM)blacksuitboy Wrote: [ -> ]Firstly, I installed Av@da v5.0.5, I both used sirdree's method, which is:

sirdree Wrote:1: go to your phpmyadmin
2: select database name where your site is installed
3: select table wp_options then select SQL (to open sql commands to run)
4: copy&paste this and run:
INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES
('avada_registration', 'a:1:{s:5:"token";s:10:"1234567890";}', 'yes'),
('avada_registered', '1', 'yes');

and my method, which is:

Quote:1. Go to > http://yourdomain.com/wp-admin/theme-editor.php

2. Choose theme Avada to edit

3. Search for the file: "Avada: class-avada-product-registration.php (includes/class-avada-product-registration.php)" to edit

4. Press F3 on your browser, type "$registered" (without "")

5. Change the found string: $registered = false; > $registered = true;

6. Next, find the function "public static function is_registered()"

7. Change all the return command: return false; > return true;

8. Enjoy!

Then, I downloaded kamru's share of Av@da v5.1.4
I activated theme twenty seventeen to deactivated Av@da
I deleted Av@da theme folder (not Av@da child theme folder) from my VPS
I came back to Wordpress, chose to install new theme and uploaded Av@da v5.1.4
I activated Av@da theme again.

Voila! I still have Av@da v5.1.4 with patch and downloadable theme demo.

>> So the temporary solution is to install v5.0.5 and nulled it first with the above methods then manually update to v5.1.4
Hope it work!

(03-24-2017 05:57 PM)kamru Wrote: [ -> ]Well, they updated it already. The database trick doesnt work anymore too.
Great info!
Rep+
Thanks man for this!!! rep+ does it have to be nulled? thanks in advance.

[quote='kamru' pid='2029526' dateline='1490124771']
Newspaper 7.8
Magic Button :
https://my.pcloud.com/publink/show?code=XZ8Q5UZTAsVimtACqpwPomj39KK9RneUduV
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
Reference URL's