@phpcore @Bedo @ghostriderrrClean version as I got it from official download page after purchase
Thanks brotry this, use any purchase/license key
Hi, i've done my own nulling and i think it works sofar..anyway you could give it a shot:Clean version as I got it from official download page after purchase
Hi, i've done my own nulling and i think it works sofar..anyway you could give it a shot:
1. Open file wp-content/plugins/woocommerce-quantity-manager-pro/includes/classes/class-updating.php
2. Goto line 62 public function activate_license()
3. Add after the line 66 $result = $this->api_request...... the following
$result->status = "passed";
![]()
4. save the file and go enter any licence key
![]()
5. should look as above screen shot
6. verify the functionality in products:
![]()
![]()
![]()
Hope it works..
Regards & Cheers!
$object = new stdClass();
$object->property = 'this is my value';
$result->expiration
? public function activate_license()
{
$key = $_POST['wqm_license'];
update_option('woocommerce-quantity-manager-pro_license', base64_encode(json_encode(
[
'key' => $key,
'expiration' => strtotime('2038-12-31'),
'url' => home_url()
]
)));
return true;
}
Thank you very much for the corrections and suggestions phpcore. Indeed i'm a newbie in this, and need to practice to get better. We can delete my posting for sureIf you null a script you need to remove all remote server callbacks.
Maybe you don't know how to create an object without a class ?
It's easy just do like below :
PHP:$object = new stdClass(); $object->property = 'this is my value';
And what about$result->expiration
?
And the final code of the method should be
PHP:public function activate_license() { $key = $_POST['wqm_license']; update_option('woocommerce-quantity-manager-pro_license', base64_encode(json_encode( [ 'key' => $key, 'expiration' => strtotime('2038-12-31'), 'url' => home_url() ] ))); return true; }
And the entire plugin is already nulled and attached above.
It was a comment and not an intention to delete your post.Thank you very much for the corrections and suggestions phpcore. Indeed i'm a newbie in this, and need to practice to get better. We can delete my posting for sure
Regards.