I like this share, but can you confirm this is [purchased] or picked from the internet
(03-23-2017 01:29 AM)Sandeepjinagal Wrote: [ -> ]I like this share, but can you confirm this is [purchased] or picked from the internet
its a retail copy from a trusted source
Does anyone have the version 1.8 for boombox.... and can they share here...
Thanks
if you´re haveing problems with theme activation, try:
i have nulled the activation function. The file is in wp-content/themes/boombox/includes/admin/activation/themes/functions.php
i´ve altered the boombox_is_registered function to:
function boombox_is_registered() {
//$is_registered = get_site_transient( 'boombox_theme_registration' );
$is_registered = true;
// Verified, access granted.
if ( ! ! $is_registered ) {
return true;
}
// Check if required plugin for activation is installed and active
//if ( ! boombox_plugin_management_service()->is_plugin_active( 'envato-market/envato-market.php' ) ) {
// return false;
//}
$is_registered = true;
//$purchased_themes = envato_market()->api()->themes();
/*foreach ( $purchased_themes as $purchased_theme ) {
if (
( 'boombox' === strtolower( $purchased_theme[ 'name' ] ) )
and& ( 'px-lab' === strtolower( $purchased_theme[ 'author' ] ) )
) {
$is_registered = true;
break;
}
}
*/
/* if ( $is_registered ) {
$expire_in_one_day = 1 * DAY_IN_SECONDS;
set_site_transient( 'boombox_theme_registration', true, $expire_in_one_day );
}*/
return $is_registered;
}