In the file classes/Updater.php, find the function __construct which starts around line 1, add this to the start of the function code: $license_info = array(‘activated’=>true, ‘license_key’=>’123qwe123qwe’, ‘license_to’=>’your_name_here’, ‘expires_at’=>’31 December 2099’, ‘activated_at’=>’31 December 2018’, ‘msg’=>”); //RC $license_info_serialize = serialize($license_info); update_option(QUBELY_FREE_BASENAME.’_license_info’, $license_info); Feel free to change the your_name_here to whatever you want to be displayed as the […]
Author Archives: wptools
Uncategorized
How to activate Microthemer plugin
In file tvr-microthemer.php, at line 587, change: $response = false; To: $response = true; At line 594, change: $validation = !empty($response[‘unlock’]) ? $response[‘unlock’] : false; To: $validation = !empty($response[‘unlock’]) ? $response[‘unlock’] : true;
Uncategorized
How to activate Orienko theme
Go to orienko\functions.php, after line 38, add this code: update_option( ‘envato_purchase_code_orienko’, ‘valid’ );
Uncategorized
How to activate Zephyr theme
Go to wp-content\themes\Zephyr\common\admin\functions\about.php, after line 63 add this: update_option( ‘us_license_activated’, 1 ); update_option( ‘us_license_secret’, ‘secret_goes_here’ ); You are ready to go. Zephyr is activated and importing demos works fine.
Uncategorized
How to activate Seedprod Coming Soon Pro plugin
This info is for version 5.10.8 and maybe later. In the file admin/admin.php, change line 225 from: $request = wp_remote_post( SEED_CSPV5_API_URL, array( ‘timeout’ => 15, ‘sslverify’ => false, ‘body’ => $params ) ); To: $request = “”; A few lines further down after the line $arequest = json_decode($request); Add: $arequest->message = ”;$arequest->status = ‘200’; $arequest->per […]