Plugin Directory

Changeset 3048786


Ignore:
Timestamp:
03/11/2024 01:28:33 AM (2 years ago)
Author:
Amgnando
Message:

Deploy version 1.3.1

Location:
autocomplete-address-for-woocommerce
Files:
8 added
2 edited

Legend:

Unmodified
Added
Removed
  • autocomplete-address-for-woocommerce/trunk/autocomplete-address-for-woocommerce.php

    r3048593 r3048786  
    66 * Author:               Fernando Acosta
    77 * Author URI:           https://fernandoacosta.net
    8  * Version:              1.3.0
     8 * Version:              1.3.1
    99 * License:              GPLv2 or later
    1010 * WC requires at least: 4.0.0
     
    3838   * @var float
    3939   */
    40   const VERSION = '1.3.0';
     40  const VERSION = '1.3.1';
    4141
    4242  /**
     
    105105
    106106add_action( 'plugins_loaded', array( 'WC_Autocomplete_Address', 'get_instance' ) );
     107
     108// Declare compatibility with custom order tables for WooCommerce.
     109add_action(
     110  'before_woocommerce_init',
     111  function () {
     112    if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
     113      \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     114    }
     115  }
     116);
  • autocomplete-address-for-woocommerce/trunk/readme.txt

    r3048593 r3048786  
    4646== Changelog ==
    4747
     48= 1.3.1 - 2024/03/10 =
     49
     50- Declaração de compatibilidade com HPOS
     51
    4852= 1.3.0 - 2024/03/10 =
    4953
Note: See TracChangeset for help on using the changeset viewer.