Changeset 3469824
- Timestamp:
- 02/26/2026 03:49:21 AM (12 days ago)
- Location:
- woo-auto-coupons/tags/3.0.43
- Files:
-
- 3 copied
-
. (copied) (copied from woo-auto-coupons/trunk)
-
readme.txt (copied) (copied from woo-auto-coupons/trunk/readme.txt) (2 diffs)
-
wac_functions.php (copied) (copied from woo-auto-coupons/trunk/wac_functions.php) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-auto-coupons/tags/3.0.43/readme.txt
r3376008 r3469824 5 5 License URI: http://www.gnu.org/licenses/gpl-3.0.html 6 6 Requires at least: 4.6 7 Tested up to: 6. 88 Stable tag: 3.0.4 27 Tested up to: 6.9 8 Stable tag: 3.0.43 9 9 10 10 Apply WooCommerce Coupons automatically with a fast, lightweight plugin. Set minimum product quantities, apply coupons by URL or automatically. … … 50 50 51 51 == Changelog == 52 = 3.0.43 = * Minor php warning fixes 52 53 = 3.0.42 = * Fallback when customer declines cookies 53 54 = 3.0.40 = * Fix PHP warnings for strpos -
woo-auto-coupons/tags/3.0.43/wac_functions.php
r3376008 r3469824 7 7 Author URI: https://richardlerma.com/contact/ 8 8 Requires Plugins: woocommerce 9 Version: 3.0.4 29 Version: 3.0.43 10 10 Text Domain: woo-auto-coupons 11 Copyright: (c) 2019-202 5rldd.net - All Rights Reserved11 Copyright: (c) 2019-2026 rldd.net - All Rights Reserved 12 12 License: GPLv3 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 16 16 */ 17 17 18 global $wp_version,$wac_version,$wac_pro_version,$wac_version_type; $wac_version='3.0.4 2';18 global $wp_version,$wac_version,$wac_pro_version,$wac_version_type; $wac_version='3.0.43'; 19 19 $wac_version_type='GPL'; 20 20 $wac_pro_version=get_option('wac_pro_version'); … … 671 671 $wc_qty_ntf=wac_unsr($c->qty_ntf); 672 672 if(empty($wc_qty_ntf)) $wc_qty_ntf=array(1,-1); 673 $wc_min_ntf=$wc_qty_ntf[0] ;674 $wc_max_ntf=$wc_qty_ntf[1] ;673 $wc_min_ntf=$wc_qty_ntf[0]??1; 674 $wc_max_ntf=$wc_qty_ntf[1]??-1; 675 675 676 676 if($c->individual=='yes') $individual_use='[Individual Use]';
Note: See TracChangeset
for help on using the changeset viewer.