Plugin Directory

Changeset 3000386


Ignore:
Timestamp:
11/22/2023 11:21:14 PM (2 years ago)
Author:
payadvantage
Message:

Release 3.3.1

Location:
pay-advantage
Files:
59 added
2 edited

Legend:

Unmodified
Added
Removed
  • pay-advantage/trunk/README.txt

    r2923164 r3000386  
    33Tags: credit cards, payment gateway, online payments, e-commerce
    44Requires at least: 5.2
    5 Tested up to: 6.2.2
    6 Stable tag: 3.3.0
     5Tested up to: 6.4.1
     6Stable tag: 3.3.1
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    8484== Changelog ==
    8585
     86= 3.3.1 =
     87* Added support for new calculation guidelines
     88* Increased supported Wordpress version to 6.4.1
     89* Increased supported WooCommerce version to 8.3.0
     90
    8691= 3.3.0 =
    87 * Added support for new fee calculation guidelines
     92* Added support for new calculation guidelines
    8893* Increased supported Wordpress version to 6.2.2
    8994* Increased supported WooCommerce version to 7.7.0
  • pay-advantage/trunk/payadvantage.php

    r2923161 r3000386  
    1616 * Plugin URI:        https://www.payadvantage.com.au/
    1717 * Description:       This plugin adds a payment gateway to Woo Commerce as well as a widget for credit card and BPay payments.
    18  * Version:           3.3.0
     18 * Version:           3.3.1
    1919 * Author:            Pay Advantage
    2020 * Author URI:        https://www.payadvantage.com.au/
     
    2323 * Text Domain:       PayAdvantage
    2424 * Domain Path:       /languages
    25  * WC tested up to: 7.7.0
     25 * WC tested up to: 8.3.0
    2626 * WC requires at least: 3.7
    2727 */
     
    3030 * Current plugin version.
    3131 */
    32 define( 'PayAdvantagePluginVersion', '3.3.0' );
     32define( 'PayAdvantagePluginVersion', '3.3.1' );
    3333
    3434include( plugin_dir_path( __FILE__ ) . '/includes/payadvantage-files.php' );
     
    127127}
    128128
     129add_action( 'before_woocommerce_init', function() {
     130    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     131        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     132    }
     133} );
     134
    129135?>
Note: See TracChangeset for help on using the changeset viewer.