Changeset 3383931
- Timestamp:
- 10/24/2025 10:12:17 AM (5 months ago)
- Location:
- minmax-quantities-for-woocommerce
- Files:
-
- 43 added
- 2 edited
-
tags/1.8.1 (added)
-
tags/1.8.1/LICENSE.txt (added)
-
tags/1.8.1/README.txt (added)
-
tags/1.8.1/assets (added)
-
tags/1.8.1/assets/admin (added)
-
tags/1.8.1/assets/admin/css (added)
-
tags/1.8.1/assets/admin/css/woo-minmax-quantities-admin.css (added)
-
tags/1.8.1/assets/admin/js (added)
-
tags/1.8.1/assets/admin/js/woo-minmax-quantities-admin.js (added)
-
tags/1.8.1/assets/public (added)
-
tags/1.8.1/assets/public/css (added)
-
tags/1.8.1/assets/public/css/woo-minmax-quantities-public.css (added)
-
tags/1.8.1/assets/public/js (added)
-
tags/1.8.1/assets/public/js/woo-minmax-quantities-public.js (added)
-
tags/1.8.1/includes (added)
-
tags/1.8.1/includes/Activator.php (added)
-
tags/1.8.1/includes/Admin (added)
-
tags/1.8.1/includes/Admin/Admin.php (added)
-
tags/1.8.1/includes/Admin/Settings.php (added)
-
tags/1.8.1/includes/Assets.php (added)
-
tags/1.8.1/includes/Clients (added)
-
tags/1.8.1/includes/Clients/Clients.php (added)
-
tags/1.8.1/includes/Deactivator.php (added)
-
tags/1.8.1/includes/I18n.php (added)
-
tags/1.8.1/includes/Init.php (added)
-
tags/1.8.1/index.php (added)
-
tags/1.8.1/languages (added)
-
tags/1.8.1/languages/woo-minmax-quantities.pot (added)
-
tags/1.8.1/minmax-quantities-for-woocommerce.php (added)
-
tags/1.8.1/uninstall.php (added)
-
tags/1.8.1/vendor (added)
-
tags/1.8.1/vendor/autoload.php (added)
-
tags/1.8.1/vendor/composer (added)
-
tags/1.8.1/vendor/composer/ClassLoader.php (added)
-
tags/1.8.1/vendor/composer/InstalledVersions.php (added)
-
tags/1.8.1/vendor/composer/LICENSE (added)
-
tags/1.8.1/vendor/composer/autoload_classmap.php (added)
-
tags/1.8.1/vendor/composer/autoload_namespaces.php (added)
-
tags/1.8.1/vendor/composer/autoload_psr4.php (added)
-
tags/1.8.1/vendor/composer/autoload_real.php (added)
-
tags/1.8.1/vendor/composer/autoload_static.php (added)
-
tags/1.8.1/vendor/composer/installed.json (added)
-
tags/1.8.1/vendor/composer/installed.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/minmax-quantities-for-woocommerce.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
minmax-quantities-for-woocommerce/trunk/README.txt
r3350982 r3383931 4 4 Requires at least: 3.0.1 5 5 Tested up to: 6.8.2 6 Stable tag: 1.8. 06 Stable tag: 1.8.1 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 87 87 88 88 == Changelog == 89 = 1.8.1 = 90 * Fix: Plugin installation issue fix 91 * Other: Compatible with WordPress 6.8.3 92 * Other: Compatible with WooCommerce 10.3.0 93 89 94 = 1.8.0 = 90 95 * Fix: Disable individual product for min max quantity -
minmax-quantities-for-woocommerce/trunk/minmax-quantities-for-woocommerce.php
r3350953 r3383931 6 6 * Plugin URI: https://storeplugin.net 7 7 * Description: MinMax Quantities for WooCommerce plugin lets you set minimum and maximum quantities for items, orders, and amounts of the products in your store. 8 * Version: 1.8. 08 * Version: 1.8.1 9 9 * Author: StorePlugin 10 10 * Author URI: https://storeplugin.net/plugins/minmax-quantities-for-woocommerce … … 28 28 * Currently plugin version. 29 29 */ 30 define( 'WOO_MINMAX_QUANTITIES_VERSION', '1.8. 0' );30 define( 'WOO_MINMAX_QUANTITIES_VERSION', '1.8.1' ); 31 31 32 32 /** … … 80 80 * @return void 81 81 */ 82 add_action( 'before_woocommerce_init', ' declare_hpos_compatibility' );83 function declare_hpos_compatibility() {82 add_action( 'before_woocommerce_init', 'woo_minmax_declare_hpos_compatibility' ); 83 function woo_minmax_declare_hpos_compatibility() { 84 84 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 85 85 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
Note: See TracChangeset
for help on using the changeset viewer.