Changeset 2520571
- Timestamp:
- 04/23/2021 07:32:02 PM (5 years ago)
- Location:
- quick-license-manager/trunk
- Files:
-
- 3 edited
-
Readme.txt (modified) (2 diffs)
-
classes/qlm_api_view.php (modified) (1 diff)
-
wc_qlm.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-license-manager/trunk/Readme.txt
r2482659 r2520571 4 4 Requires at least: 4.2 5 5 Tested up to: 5.6.2 6 Stable tag: 2.3. 16 Stable tag: 2.3.2 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 40 40 41 41 == Changelog == 42 43 = 2.3.1 - 04/23/2021 = 44 Fixed issue with QLM emails not being sent. 42 45 43 46 = 2.3.1 - 02/27/2021 = -
quick-license-manager/trunk/classes/qlm_api_view.php
r2482659 r2520571 391 391 <div class="row"> 392 392 <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/qlmdemov1 4/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> 394 394 </div> 395 395 <div class="row"> -
quick-license-manager/trunk/wc_qlm.php
r2482659 r2520571 5 5 * Plugin URI: https://wordpress.org/plugins/quick-license-manager/ 6 6 * Description: Automates the creation of license keys when orders are placed with WooCommerce 7 * Version: 2.3. 17 * Version: 2.3.2 8 8 * Author: Soraco Technologies Inc. 9 9 * Author URI: https://soraco.co … … 149 149 150 150 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 158 152 //add_action('woocommerce_payment_complete',array(&$this, 'so_payment_complete')); 159 153 add_action('woocommerce_order_status_cancelled',array(&$this, 'action_woocommerce_cancelled_order')); … … 286 280 { 287 281 global $woocommerce; 282 283 $qlm_send_mail = get_option( 'qlm_send_mail'); 288 284 289 285 if ($qlm_send_mail == false)
Note: See TracChangeset
for help on using the changeset viewer.