Plugin Directory

Changeset 2534200


Ignore:
Timestamp:
05/19/2021 11:55:21 AM (5 years ago)
Author:
soraco
Message:

Fixed issue when there's a mix of QLM and non QLM products in a shopping cart, the License Key was not added as metadata to the order.

Location:
quick-license-manager/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • quick-license-manager/trunk/Readme.txt

    r2534178 r2534200  
    4141== Changelog ==
    4242
    43 = 2.4.0 - 05/18/2021 =
    44 Added support for automatically creating a pending order for a subscription via a webhook that can be triggered by QLM v15 Webhooks Notifications.
    45   This is useful for customers who use a Manual Renewal payment method.
    46   When the pending order is created, the customer receives an invoice prior to the actual expiry of the subscription.
    47   This gives customers enough lead time to make their payment prior to the actual expiry of the license.
     43= 2.4.2 - 05/18/2021 =
    4844Fixed issue when there's a mix of QLM and non QLM products in a shopping cart, the License Key was not added as metadata to the order.
    4945
  • quick-license-manager/trunk/wc_qlm.php

    r2534178 r2534200  
    55 * Plugin URI: https://wordpress.org/plugins/quick-license-manager/
    66 * Description: Automates the creation of license keys when orders are placed with WooCommerce
    7  * Version: 2.4.0
     7 * Version: 2.4.2
    88 * Author: Soraco Technologies Inc.
    99 * Author URI: https://soraco.co
     
    134134}
    135135
     136/*
    136137class QlmWebhookSetup{
    137138     
     
    147148    }
    148149 }
    149 
     150 */
    150151
    151152if ( !class_exists('QLM_Main')){
     
    154155        function __construct()
    155156        {
    156             new QlmWebhookSetup();
     157            //new QlmWebhookSetup();
    157158
    158159            register_activation_hook( __FILE__, array(&$this, 'install') );
Note: See TracChangeset for help on using the changeset viewer.