Plugin Directory

Changeset 3029763


Ignore:
Timestamp:
01/31/2024 11:15:25 PM (2 years ago)
Author:
payformeuser
Message:

High Performance Order Storage compatible

Location:
payforme
Files:
3 edited
4 copied

Legend:

Unmodified
Added
Removed
  • payforme/tags/2.1.2/README.txt

    r3025517 r3029763  
    33Tags: payforme, pay for me, payment, checkout, stripe, woocommerce, ecommerce, e-commerce, commerce, payment gateway, other pays, someone else pays, third party payments
    44Requires at least: 5.0
    5 Tested up to: 6.4.2
    6 Stable tag: 2.1.1
     5Tested up to: 6.4.3
     6Stable tag: 2.1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • payforme/tags/2.1.2/changelog.txt

    r3025497 r3029763  
    11*** Payforme for WooCommerce Changelog ***
    22
     3
     4= 2024-01-31 - version 2.1.2 =
     5* Updated to High Performance Order Storage (HPOS)
    36
    47= 2024-01-22 - version 2.1.1 =
  • payforme/tags/2.1.2/payforme-woocommerce.php

    r3025497 r3029763  
    77 * Plugin URI:  https://wordpress.org/plugins/payforme/
    88 * Description: Payforme enables people to pay for the purchases of their friends and families via a secure payment link. Accept ApplePay, GooglePay and all major debit and credit cards from customers in every country.
    9  * Version:     2.1.1
     9 * Version:     2.1.2
    1010 * Author:      Payforme
    1111 * Author URI:  https://payforme.io/
    1212 * License:     GPL-2.0
    1313 * Requires at least:    5.0
    14  * Tested up to:         6.4.2
     14 * Tested up to:         6.4.3
    1515 * WC requires at least: 4.7
    16  * WC tested up to:      8.5.1
     16 * WC tested up to:      8.5.2
    1717 * Text Domain: payforme-for-woocommerce
    1818 */
     
    3737define('PAYFORME_SANDBOX_FRONTEND_URL', 'https://sandbox.payforme.io');
    3838
     39add_action('before_woocommerce_init', 'before_woocommerce_hpos');
     40// Mark plugin as High Performance Order Storage compatible
     41function before_woocommerce_hpos (){
     42    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     43        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     44    }
     45}
    3946
    4047
  • payforme/trunk/README.txt

    r3025517 r3029763  
    33Tags: payforme, pay for me, payment, checkout, stripe, woocommerce, ecommerce, e-commerce, commerce, payment gateway, other pays, someone else pays, third party payments
    44Requires at least: 5.0
    5 Tested up to: 6.4.2
    6 Stable tag: 2.1.1
     5Tested up to: 6.4.3
     6Stable tag: 2.1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • payforme/trunk/changelog.txt

    r3025497 r3029763  
    11*** Payforme for WooCommerce Changelog ***
    22
     3
     4= 2024-01-31 - version 2.1.2 =
     5* Updated to High Performance Order Storage (HPOS)
    36
    47= 2024-01-22 - version 2.1.1 =
  • payforme/trunk/payforme-woocommerce.php

    r3025497 r3029763  
    77 * Plugin URI:  https://wordpress.org/plugins/payforme/
    88 * Description: Payforme enables people to pay for the purchases of their friends and families via a secure payment link. Accept ApplePay, GooglePay and all major debit and credit cards from customers in every country.
    9  * Version:     2.1.1
     9 * Version:     2.1.2
    1010 * Author:      Payforme
    1111 * Author URI:  https://payforme.io/
    1212 * License:     GPL-2.0
    1313 * Requires at least:    5.0
    14  * Tested up to:         6.4.2
     14 * Tested up to:         6.4.3
    1515 * WC requires at least: 4.7
    16  * WC tested up to:      8.5.1
     16 * WC tested up to:      8.5.2
    1717 * Text Domain: payforme-for-woocommerce
    1818 */
     
    3737define('PAYFORME_SANDBOX_FRONTEND_URL', 'https://sandbox.payforme.io');
    3838
     39add_action('before_woocommerce_init', 'before_woocommerce_hpos');
     40// Mark plugin as High Performance Order Storage compatible
     41function before_woocommerce_hpos (){
     42    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     43        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     44    }
     45}
    3946
    4047
Note: See TracChangeset for help on using the changeset viewer.