11-14-2018, 04:23 AM
11-14-2018, 10:56 AM
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.)
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.)
11-14-2018, 09:27 PM
(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.)
Theme only 6 MB, 250MB is entire package form ThemeForest with theme, plugins and PSD files
11-14-2018, 10:28 PM
This is entire package form ThemeForest with theme, plugins and PSD files. It's not nulled.
11-15-2018, 05:30 PM
Urlicics.
So If I read this correctly - it should be 100% ready to use as-is and will not need to be nulled, yes ??:
@Dccountrydz - for enlightening me about this !!!
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 - for enlightening me about this !!!
11-15-2018, 05:43 PM
(11-15-2018 05:30 PM)smithnowt Wrote: [ -> ] 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 - for enlightening me about this !!!
It need api key to unlock full features. Need null version!
11-15-2018, 06:52 PM
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:
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
Thanks @Tisna!
It's very helpful for others!
It's very helpful for others!
11-16-2018, 02:05 AM
(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
(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 :)