go to nex\vamtam\admin\helpers\updates\
Open version-checker.php
find these code around line 156 to 165
PHP:if ( apply_filters( 'vamtam_purchase_code_import_override', false ) ) { return true; } ob_start(); do_action( 'wp_ajax_vamtam-check-license', array( 'no_ajax' => true, )); return strpos( ob_get_clean(), 'Valid Purchase Key') !== false;
and change it with code
PHP:update_option( 'vamtam-envato-license-key', 'valid' ); return true;
I changed "false" value for "true" in this partand works fine for me @Tomz .Code:return strpos( ob_get_clean(), 'Valid Purchase Key') !== true;
Last edited: