Plugin Directory

Changeset 2520571


Ignore:
Timestamp:
04/23/2021 07:32:02 PM (5 years ago)
Author:
soraco
Message:

Fixed issue with QLM emails not being sent.

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

Legend:

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

    r2482659 r2520571  
    44Requires at least: 4.2
    55Tested up to: 5.6.2
    6 Stable tag: 2.3.1
     6Stable tag: 2.3.2
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4040
    4141== Changelog ==
     42
     43= 2.3.1 - 04/23/2021 =
     44Fixed issue with QLM emails not being sent.
    4245
    4346= 2.3.1 - 02/27/2021 =
  • quick-license-manager/trunk/classes/qlm_api_view.php

    r2482659 r2520571  
    391391                        <div class="row">
    392392                            <div class="col-md-4" style="margin-top:0em;"></div>
    393                             <div class="col-md-8" style="margin-top:0em;"><i>Example: https://qlm3.net/qlmdemov14/qlmLicenseServer/qlmservice.asmx</i></div>                           
     393                            <div class="col-md-8" style="margin-top:0em;"><i>Example: https://qlm3.net/qlmdemov15/qlmLicenseServer/qlmservice.asmx</i></div>                           
    394394                        </div>
    395395                        <div class="row">
  • quick-license-manager/trunk/wc_qlm.php

    r2482659 r2520571  
    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.3.1
     7 * Version: 2.3.2
    88 * Author: Soraco Technologies Inc.
    99 * Author URI: https://soraco.co
     
    149149
    150150            add_action('add_meta_boxes', array(&$this,'add_meta') );
    151 
    152             $qlm_send_mail  = get_option( 'qlm_send_mail');
    153             if ($qlm_send_mail == true)
    154             {
    155                 //add_action('woocommerce_order_status_completed',array(&$this, 'mail_on_order_completed'));   
    156             }
    157 
     151           
    158152            //add_action('woocommerce_payment_complete',array(&$this, 'so_payment_complete'));   
    159153            add_action('woocommerce_order_status_cancelled',array(&$this, 'action_woocommerce_cancelled_order'));
     
    286280        {
    287281            global $woocommerce;
     282
     283            $qlm_send_mail  = get_option( 'qlm_send_mail');
    288284
    289285            if ($qlm_send_mail == false)
Note: See TracChangeset for help on using the changeset viewer.