Author Archives: wptools

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 && […]

How to activate Pennews theme

Begin with the file inc/dashboard/inc/require-activation.php. Find the function do_check_envato_code which starts on line 185, add this to the start of the function code: update_option( ‘penci_pennews_is_activated’, 1 ); wp_send_json_success( array( ‘success’ => true ) ); Now you can use any key to activate the theme.