Changeset 2971477
- Timestamp:
- 09/25/2023 05:43:59 PM (3 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
r2971426 r2971477 3 3 Tags: quick license manager, software protection, ecommerce 4 4 Requires at least: 4.2 5 Tested up to: 6. 1.16 Stable tag: 2.4.1 45 Tested up to: 6.3.1 6 Stable tag: 2.4.15 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.4.15 - 09/25/2023 = 44 Automatically detect if WooCommerce Custom Product Add-ons is active. 42 45 43 46 = 2.4.14 - 09/25/2023 = -
quick-license-manager/trunk/classes/qlm_api_view.php
r2971426 r2971477 388 388 $qlm_product_addon = get_option( 'qlm_product_addon'); 389 389 390 if (is_plugin_active('woo-custom-product-addons/start.php') == false) 391 { 392 debug_message (610, $order, __FUNCTION__ , 'WooCommerce Custom Product Add-on is not installed .'); 393 $qlm_product_addon = false; 394 update_option( 'qlm_product_addon', $qlm_product_addon ); 395 } 396 390 397 $qlm_revoke_when_order_cancelled = get_option( 'qlm_revoke_when_order_cancelled'); 391 398 $qlm_revoke_when_subscription_cancelled = get_option( 'qlm_revoke_when_subscription_cancelled'); -
quick-license-manager/trunk/wc_qlm.php
r2971426 r2971477 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.4.1 47 * Version: 2.4.15 8 8 * Author: Soraco Technologies Inc. 9 9 * Author URI: https://soraco.co 10 10 * WC requires at least: 4.0.0 11 * WC tested up to: 7.4.011 * WC tested up to: 8.1.1 12 12 */ 13 13 … … 21 21 22 22 // 23 //Debug Message Next Index: 61 023 //Debug Message Next Index: 615 24 24 // 25 25 … … 89 89 if ($qlm_product_addon == false) 90 90 { 91 debug_message (9, $order, __FUNCTION__ , ' Product Add-on supportis not enabled.');91 debug_message (9, $order, __FUNCTION__ , 'WooCommerce Custom Product Add-on is not enabled.'); 92 92 return; 93 93 } 94 95 if (is_plugin_active('woo-custom-product-addons/start.php') == false) 96 { 97 debug_message (610, $order, __FUNCTION__ , 'WooCommerce Custom Product Add-on is not installed .'); 98 return; 99 } 100 94 101 95 102 $meta_data = $item->get_meta(WCPA_ORDER_META_KEY);
Note: See TracChangeset
for help on using the changeset viewer.