46.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

11-14-2018, 04:23 AM
Post: #1
[GET] - Avada 5.7.2
Avada Responsive Multi-Purpose Theme 5.7.2 untouched package from TF.


Download Package
11-14-2018, 10:56 AM (This post was last modified: 11-14-2018 10:57 AM by Lumos.)
Post: #2
RE: [GET] - Avada 5.7.2
This theme baffles me...some offers of it are ~6MB, others (such as this one) are ~250 MB...
Can someone please explain this huge difference ??

Is this release retail - or ???

Is it 100% clean and ready to use ??
(Other shares of this have shown to be infected with a webshell in VT.)
Thanks
I totally despise board spammers and spambots !!!
11-14-2018, 09:27 PM (This post was last modified: 11-15-2018 12:30 AM by CanhCam Guy.)
Post: #3
RE: [GET] - Avada 5.7.2
(11-14-2018 10:56 AM)smithnowt Wrote:  This theme baffles me...some offers of it are ~6MB, others (such as this one) are ~250 MB...
Can someone please explain this huge difference ??

Is this release retail - or ???

Is it 100% clean and ready to use ??
(Other shares of this have shown to be infected with a webshell in VT.)
Thanks

Theme only 6 MB, 250MB is entire package form ThemeForest with theme, plugins and PSD files
11-14-2018, 10:28 PM
Post: #4
RE: [GET] - Avada 5.7.2
This is entire package form ThemeForest with theme, plugins and PSD files. It's not nulled.
11-15-2018, 05:30 PM
Post: #5
RE: [GET] - Avada 5.7.2
Thanks Urlicics.

So If I read this correctly - it should be 100% ready to use as-is and will not need to be nulled, yes ??:
(11-14-2018 10:28 PM)urlicics Wrote:  This is entire package form ThemeForest with theme, plugins and PSD files. It's not nulled.

@Dccountrydz - Thanks for enlightening me about this !!!
37.gif
I totally despise board spammers and spambots !!!
11-15-2018, 05:43 PM
Post: #6
RE: [GET] - Avada 5.7.2
(11-15-2018 05:30 PM)smithnowt Wrote:  Thanks Urlicics.

So If I read this correctly - it should be 100% ready to use as-is and will not need to be nulled, yes ??:
(11-14-2018 10:28 PM)urlicics Wrote:  This is entire package form ThemeForest with theme, plugins and PSD files. It's not nulled.

@Dccountrydz - Thanks for enlightening me about this !!!

It need api key to unlock full features. Need null version!
11-15-2018, 06:52 PM
Post: #7
RE: [GET] - Avada 5.7.2
here how to null avata v5.6.2
Navigate to Avada/includes/lib/inc/class-fusion-envato-api.php
Find and comment out these two lines:
Code:
PHP:

// Check the response code.
//$response_code = wp_remote_retrieve_response_code( $response );
//$response_message = wp_remote_retrieve_response_message( $response );

Navigate to Avada/includes/lib/inc/class-fusion-product-registration.php
Find:
PHP:

set_site_transient( 'fusion_envato_api_down', true, 600 );

Change 600 to 0

Find: Has user associated with current token purchased this product?
Change This:
PHP:

# Set "return false;" to "true":
public function is_registered() {

// Is the product registered?
if ( isset( $this->registered[ $this->product_id ] ) and& true === $this->registered[ $this->product_id ] ) {
return true;
}
// Is the Envato API down?
if ( get_site_transient( 'fusion_envato_api_down' ) ) {
return true;
}
// Fallback to false.
return false;

}

To THis:
PHP:

public function is_registered() {

// Is the product registered?
if ( isset( $this->registered[ $this->product_id ] ) and& true === $this->registered[ $this->product_id ] ) {
return true;
}
// Is the Envato API down?
if ( get_site_transient( 'fusion_envato_api_down' ) ) {
return true;
}
// Fallback to false.
return true;

}
11-15-2018, 10:17 PM
Post: #8
RE: [GET] - Avada 5.7.2
Thanks @Tisna!
It's very helpful for others!
11-16-2018, 02:05 AM
Post: #9
RE: [GET] - Avada 5.7.2
(11-15-2018 06:52 PM)tisna Wrote:  here how to null avata v5.6.2
Navigate to Avada/includes/lib/inc/class-fusion-envato-api.php
Find and comment out these two lines:
Code:
PHP:

// Check the response code.
//$response_code = wp_remote_retrieve_response_code( $response );
//$response_message = wp_remote_retrieve_response_message( $response );

Navigate to Avada/includes/lib/inc/class-fusion-product-registration.php
Find:
PHP:

set_site_transient( 'fusion_envato_api_down', true, 600 );

Change 600 to 0

Find: Has user associated with current token purchased this product?
Change This:
PHP:

# Set "return false;" to "true":
public function is_registered() {

// Is the product registered?
if ( isset( $this->registered[ $this->product_id ] ) and& true === $this->registered[ $this->product_id ] ) {
return true;
}
// Is the Envato API down?
if ( get_site_transient( 'fusion_envato_api_down' ) ) {
return true;
}
// Fallback to false.
return false;

}

To THis:
PHP:

public function is_registered() {

// Is the product registered?
if ( isset( $this->registered[ $this->product_id ] ) and& true === $this->registered[ $this->product_id ] ) {
return true;
}
// Is the Envato API down?
if ( get_site_transient( 'fusion_envato_api_down' ) ) {
return true;
}
// Fallback to false.
return true;

}

I can't find this in the files 5.7.2. Using find in notepad++. Which line i can find them? Thank you.
11-16-2018, 07:35 PM (This post was last modified: 11-16-2018 07:35 PM by tisna.)
Post: #10
RE: [GET] - Avada 5.7.2
(11-16-2018 02:05 AM)batmax Wrote:  
(11-15-2018 06:52 PM)tisna Wrote:  here how to null avata v5.6.2
Navigate to Avada/includes/lib/inc/class-fusion-envato-api.php
Find and comment out these two lines:
Code:
PHP:

// Check the response code.
//$response_code = wp_remote_retrieve_response_code( $response );
//$response_message = wp_remote_retrieve_response_message( $response );

Navigate to Avada/includes/lib/inc/class-fusion-product-registration.php
Find:
PHP:

set_site_transient( 'fusion_envato_api_down', true, 600 );

Change 600 to 0

Find: Has user associated with current token purchased this product?
Change This:
PHP:

# Set "return false;" to "true":
public function is_registered() {

// Is the product registered?
if ( isset( $this->registered[ $this->product_id ] ) and& true === $this->registered[ $this->product_id ] ) {
return true;
}
// Is the Envato API down?
if ( get_site_transient( 'fusion_envato_api_down' ) ) {
return true;
}
// Fallback to false.
return false;

}

To THis:
PHP:

public function is_registered() {

// Is the product registered?
if ( isset( $this->registered[ $this->product_id ] ) and& true === $this->registered[ $this->product_id ] ) {
return true;
}
// Is the Envato API down?
if ( get_site_transient( 'fusion_envato_api_down' ) ) {
return true;
}
// Fallback to false.
return true;

}

I can't find this in the files 5.7.2. Using find in notepad++. Which line i can find them? Thank you.

download ver 5.6.2 here
uploadboy dot com/6xb60l6qck5n/3195/zip

and nulled it, after that you can replace for update version :)

(11-16-2018 02:05 AM)batmax Wrote:  
(11-15-2018 06:52 PM)tisna Wrote:  here how to null avata v5.6.2
Navigate to Avada/includes/lib/inc/class-fusion-envato-api.php
Find and comment out these two lines:
Code:
PHP:

// Check the response code.
//$response_code = wp_remote_retrieve_response_code( $response );
//$response_message = wp_remote_retrieve_response_message( $response );

Navigate to Avada/includes/lib/inc/class-fusion-product-registration.php
Find:
PHP:

set_site_transient( 'fusion_envato_api_down', true, 600 );

Change 600 to 0

Find: Has user associated with current token purchased this product?
Change This:
PHP:

# Set "return false;" to "true":
public function is_registered() {

// Is the product registered?
if ( isset( $this->registered[ $this->product_id ] ) and& true === $this->registered[ $this->product_id ] ) {
return true;
}
// Is the Envato API down?
if ( get_site_transient( 'fusion_envato_api_down' ) ) {
return true;
}
// Fallback to false.
return false;

}

To THis:
PHP:

public function is_registered() {

// Is the product registered?
if ( isset( $this->registered[ $this->product_id ] ) and& true === $this->registered[ $this->product_id ] ) {
return true;
}
// Is the Envato API down?
if ( get_site_transient( 'fusion_envato_api_down' ) ) {
return true;
}
// Fallback to false.
return true;

}

I can't find this in the files 5.7.2. Using find in notepad++. Which line i can find them? Thank you.

download ver 5.6.2 here
uploadboy dot com/6xb60l6qck5n/3195/zip

and nulled it, after that you can replace for update version :)
60.gif




8.gif