Wombat WooCommerce Quantity Discounts, Rules & Swatches

Status
Not open for further replies.

Kaczewski

New member
Nov 16, 2019
17
3
3
Clean version as I got it from official download page after purchase
 

Attachments

  • woocommerce-quantity-manager-pro-version-1.1.8 (1).zip
    54.9 KB · Views: 26
  • Like
Reactions: Lalo

Custom B

Active member
Feb 29, 2020
137
123
43
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";
1674243268818.png
4. save the file and go enter any licence key
1674243306777.png
5. should look as above screen shot
6. verify the functionality in products:
1674243369452.png
1674243382721.png
1674243393467.png

Hope it works..
Regards & Cheers!
 

phpCore

ReLOADED
Trusted Uploader
Banned User
Jun 6, 2020
1,511
1,657
120
127.0.0.1/::1
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";
1674243268818.png
4. save the file and go enter any licence key
1674243306777.png
5. should look as above screen shot
6. verify the functionality in products:
1674243369452.png
1674243382721.png
1674243393467.png

Hope it works..
Regards & Cheers!

If 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.
 
  • Like
Reactions: DatDudeUpStairs

Custom B

Active member
Feb 29, 2020
137
123
43
If 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.
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.
 
  • Like
Reactions: phpCore

phpCore

ReLOADED
Trusted Uploader
Banned User
Jun 6, 2020
1,511
1,657
120
127.0.0.1/::1
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.
It was a comment and not an intention to delete your post.
 
Status
Not open for further replies.

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu