Changeset 3360862
- Timestamp:
- 09/13/2025 04:34:56 AM (6 months ago)
- Location:
- add-quantity-field-on-shop-page-for-woocommerce
- Files:
-
- 13 added
- 2 edited
-
tags/1.0.20 (added)
-
tags/1.0.20/add-quantity-field-on-shop-page.php (added)
-
tags/1.0.20/includes (added)
-
tags/1.0.20/includes/admin (added)
-
tags/1.0.20/includes/admin/assets (added)
-
tags/1.0.20/includes/admin/assets/img (added)
-
tags/1.0.20/includes/admin/assets/img/wvpd-icon.gif (added)
-
tags/1.0.20/includes/admin/class-aqf_plugin_installer.php (added)
-
tags/1.0.20/includes/plugin_compatibility.php (added)
-
tags/1.0.20/index.php (added)
-
tags/1.0.20/languages (added)
-
tags/1.0.20/languages/add-quantity-field-on-shop-page.pot (added)
-
tags/1.0.20/readme.txt (added)
-
trunk/add-quantity-field-on-shop-page.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
add-quantity-field-on-shop-page-for-woocommerce/trunk/add-quantity-field-on-shop-page.php
r3322590 r3360862 5 5 * Description: Display quantity field on the Shop / Archive page of WooCommerce. 6 6 * Author: Tanvirul Haque 7 * Version: 1.0. 197 * Version: 1.0.20 8 8 * Author URI: http://wpxpress.net 9 9 * Text Domain: add-quantity-field-on-shop-page … … 13 13 * Tested up to: 6.8 14 14 * WC requires at least: 4.5 15 * WC tested up to: 9.915 * WC tested up to: 10.1 16 16 * License: GPLv2+ 17 17 */ … … 34 34 * @var string 35 35 */ 36 public $version = '1.0. 19';36 public $version = '1.0.20'; 37 37 38 38 /** … … 333 333 add_action( 'plugins_loaded', 'woo_add_quantity_field_on_shop_page', 20 ); 334 334 335 336 /** 337 * Supporting WooCommerce High-Performance Order Storage 338 */ 339 function woo_add_quantity_field_hpos_compatibility() { 340 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 341 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 342 } 343 } 344 345 add_action( 'before_woocommerce_init', 'woo_add_quantity_field_hpos_compatibility' ); 346 -
add-quantity-field-on-shop-page-for-woocommerce/trunk/readme.txt
r3322590 r3360862 6 6 Tested up to: 6.8 7 7 WC requires at least: 4.5 8 WC tested up to: 9.99 Stable tag: 1.0. 198 WC tested up to: 10.1 9 Stable tag: 1.0.20 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.