Plugin Directory

Changeset 3360862


Ignore:
Timestamp:
09/13/2025 04:34:56 AM (6 months ago)
Author:
tanvirul
Message:

Release 1.0.20

Location:
add-quantity-field-on-shop-page-for-woocommerce
Files:
13 added
2 edited

Legend:

Unmodified
Added
Removed
  • add-quantity-field-on-shop-page-for-woocommerce/trunk/add-quantity-field-on-shop-page.php

    r3322590 r3360862  
    55 * Description: Display quantity field on the Shop / Archive page of WooCommerce.
    66 * Author: Tanvirul Haque
    7  * Version: 1.0.19
     7 * Version: 1.0.20
    88 * Author URI: http://wpxpress.net
    99 * Text Domain: add-quantity-field-on-shop-page
     
    1313 * Tested up to: 6.8
    1414 * WC requires at least: 4.5
    15  * WC tested up to: 9.9
     15 * WC tested up to: 10.1
    1616 * License: GPLv2+
    1717*/
     
    3434         * @var  string
    3535         */
    36         public $version = '1.0.19';
     36        public $version = '1.0.20';
    3737
    3838        /**
     
    333333add_action( 'plugins_loaded', 'woo_add_quantity_field_on_shop_page', 20 );
    334334
     335
     336/**
     337 * Supporting WooCommerce High-Performance Order Storage
     338 */
     339function 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
     345add_action( 'before_woocommerce_init', 'woo_add_quantity_field_hpos_compatibility' );
     346
  • add-quantity-field-on-shop-page-for-woocommerce/trunk/readme.txt

    r3322590 r3360862  
    66Tested up to: 6.8
    77WC requires at least: 4.5
    8 WC tested up to: 9.9
    9 Stable tag: 1.0.19
     8WC tested up to: 10.1
     9Stable tag: 1.0.20
    1010License: GPLv2 or later
    1111License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.