Author Archives: wptools

How to activate Porto theme

Step 1: Activate the theme with a legit key In file /porto/inc/admin/admin.php, at around line 191, find: public function is_registered() { Add following code: update_option(‘porto_product_registration_code’, ‘NDZiYzdhZTktYTJhMC00MmY5LTg3NzctZGNjYjM3MjI0ZTEw’ ); Step 2: Set your wp to localhost status so that the theme won’t block the theme from importing demos In file porto\inc\plugins\importer\importer-api.php, at around line 216, find: public […]

How to activate AutomateWoo plugin

The line number may be slightly different – they will change when you make the code changes below. In the file automatewoo/includes/licenses.php Find the function check_for_domain_mismatch which is around line 171 and add as the first line of the function code: return; Now find the function maybe_check_status which starts around line 196 and add as […]

How to activate Flatsome theme

In the file flatsome/inc/functions/function-update.php, near the bottom of the file, find function wupdates_prevalidate_purchase_code_JQ9eJ ( $purchase_code ) Add this to the start of the function code: return true; Then in the function wupdates_process_purchase_code_JQ9eJ which starts around line 213 comment out lines 245-248 like this: // $raw_response = wp_remote_post( $url, $http_args ); // if ( $ssl && […]