go to " wp-content/plugins/thrive-visual-editor/thrive-dashboard/classes/Product " => open " LicenseManager.php " => find the code " public function checkLicense " => delete the code "
{
$api_url = "
http://service-api.thrivethemes.com/license";
$body = array(
'email' => $email,
'license' => $key
);
if ( $tag !== false ) {
$body['tag'] = $tag;
}
$api_url = add_query_arg( array(
'p' => $this->calc_hash( $body )
), $api_url );
$_args = array(
'sslverify' => false,
'timeout' => 120,
'headers' => array(
'User-Agent' => 'WordPress',
),
'body' => $body,
) "
then copy this code into it "
$response = array();
$response['success'] = 1;
$response['products'] = array(self::ALL_TAG);
return $response; " => find the next code " function itemActivated() " and add "
return true;" into it. save it and done.