(03-20-2017 05:19 AM)caaol Wrote: [ -> ]Hi Kamru,
Please update to newspaper 7.7.1. Thank you!
Nsp 7.7.1 just add latest visual composer and revolution plugins. It's not important to take time update. Maybe you should keep 7.7.0 and waiting for next more important updates!
hi Kamru,
could you share X The Theme please?
Great themes!! Max reps for keeping the theme updates going!!
Newspaper 7.8
Flatsome 3.2.5 - I may or may not have uploaded this version before here. I forgot.
X 4.6.4
Be 17.3
thanks soooooooooooooo much kamru, repped!
@kamru, where are the plugins? not included?
It should be there, under a tgm something folder.
(03-22-2017 05:32 AM)kamru Wrote: [ -> ]Newspaper 7.8
Flatsome 3.2.5 - I may or may not have uploaded this version before here. I forgot.
X 4.6.4
Be 17.3

kamru

++++Rep...
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;
}
}
(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.