How to deactivate thrive theme license key

escobart

Regular Member
Joined
Mar 18, 2017
Messages
469
Reaction score
153
Hi guys, before this I'm subscribed thrive theme for unlimited site. Now they only limit to 25 site only. So i discontinue my subscription.

Did you know how can i used thrive theme without activate the license key?
 
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.
 
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.

That’s a bit convoluted...
 
Last edited by a moderator:
Just wanted to thank you, man, this was so clutch and worked like a charm.
 
Back
Top