Changeset 2544781
- Timestamp:
- 06/09/2021 05:45:17 AM (4 years ago)
- Location:
- woo-min-max-quantity-limit
- Files:
-
- 3 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
woo-min-max-quantity-limit/tags/2.1.7/changelog.txt
r2543347 r2544781 1 1 *** WC Minimum & Maximum Quantity Changelog *** 2 2021.06.09 - version 2.1.7 3 * Bug Fix: To set the default increment by value @tigerrockmartialarts 2 4 2021.06.06 - version 2.1.6 3 5 * Bug Fix: If quantity item manually changed in the product page / cart page and if the changed quantity voids the minimum / maximum order quantity rule / the quantity increment rule then it throws error which was not earlier. -
woo-min-max-quantity-limit/tags/2.1.7/readme.txt
r2543347 r2544781 5 5 Requires at least: 3.3.1 6 6 Tested up to: 5.7.2 7 Stable tag: 2.1. 67 Stable tag: 2.1.7 8 8 WC tested up to: 5.3.0 9 9 License: GNU General Public License v3.0 … … 44 44 45 45 == Changelog == 46 = 2.1.7 = 47 Bug Fix: To set the default increment by value @tigerrockmartialarts 46 48 = 2.1.6 = 47 49 Bug Fix: If quantity item manually changed in the product page / cart page and if the changed quantity voids the minimum / maximum order quantity rule / the quantity increment rule then it throws error which was not earlier. -
woo-min-max-quantity-limit/tags/2.1.7/woo-min-max-quantity.php
r2543347 r2544781 4 4 Plugin URI: http://ashokg.in/ 5 5 Description: Allow the site admin to enable the feature of minimum and maximum purchase of a particular product in each product. 6 Version: 2.1. 66 Version: 2.1.7 7 7 Author: Ashok G 8 8 Text Domain: wcmmax 9 9 Author URI: https://ashokg.in 10 10 WC tested up to: 5.3.0 11 Copyright: © 20 20Ashok G.11 Copyright: © 201 Ashok G. 12 12 License: GNU General Public License v3.0 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 136 136 $maxQty = get_post_meta($product, '_wc_mmax_max', true); 137 137 $incrementbyQty = get_post_meta($product, '_wc_mmax_increment', true); 138 $incrementbyQty = $incrementbyQty ? $incrementbyQty : 1; 138 139 $cartQty = wc_mmax_woo_in_cart($product); 139 140 if (get_option('_wcmmax_options_option_name') != NULL && get_option('_wcmmax_options_option_name') != '') { -
woo-min-max-quantity-limit/trunk/changelog.txt
r2543347 r2544781 1 1 *** WC Minimum & Maximum Quantity Changelog *** 2 2021.06.09 - version 2.1.7 3 * Bug Fix: To set the default increment by value @tigerrockmartialarts 2 4 2021.06.06 - version 2.1.6 3 5 * Bug Fix: If quantity item manually changed in the product page / cart page and if the changed quantity voids the minimum / maximum order quantity rule / the quantity increment rule then it throws error which was not earlier. -
woo-min-max-quantity-limit/trunk/readme.txt
r2543347 r2544781 5 5 Requires at least: 3.3.1 6 6 Tested up to: 5.7.2 7 Stable tag: 2.1. 67 Stable tag: 2.1.7 8 8 WC tested up to: 5.3.0 9 9 License: GNU General Public License v3.0 … … 44 44 45 45 == Changelog == 46 = 2.1.7 = 47 Bug Fix: To set the default increment by value @tigerrockmartialarts 46 48 = 2.1.6 = 47 49 Bug Fix: If quantity item manually changed in the product page / cart page and if the changed quantity voids the minimum / maximum order quantity rule / the quantity increment rule then it throws error which was not earlier. -
woo-min-max-quantity-limit/trunk/woo-min-max-quantity.php
r2543347 r2544781 4 4 Plugin URI: http://ashokg.in/ 5 5 Description: Allow the site admin to enable the feature of minimum and maximum purchase of a particular product in each product. 6 Version: 2.1. 66 Version: 2.1.7 7 7 Author: Ashok G 8 8 Text Domain: wcmmax 9 9 Author URI: https://ashokg.in 10 10 WC tested up to: 5.3.0 11 Copyright: © 20 20Ashok G.11 Copyright: © 201 Ashok G. 12 12 License: GNU General Public License v3.0 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 136 136 $maxQty = get_post_meta($product, '_wc_mmax_max', true); 137 137 $incrementbyQty = get_post_meta($product, '_wc_mmax_increment', true); 138 $incrementbyQty = $incrementbyQty ? $incrementbyQty : 1; 138 139 $cartQty = wc_mmax_woo_in_cart($product); 139 140 if (get_option('_wcmmax_options_option_name') != NULL && get_option('_wcmmax_options_option_name') != '') {
Note: See TracChangeset
for help on using the changeset viewer.