Plugin Directory

Changeset 3127174


Ignore:
Timestamp:
07/29/2024 09:26:39 AM (20 months ago)
Author:
tripleatechnology
Message:

RELEASE | 2.0.20 | Depreciated function removed

Location:
triplea-cryptocurrency-payment-gateway-for-woocommerce
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.20/includes/WooCommerce/TripleA_Payment_Gateway.php

    r3120922 r3127174  
    2424    protected $triplea_client_secret_key;
    2525    protected $triplea_client_public_key;
     26    protected $test_mode;
    2627
    2728    /**
     
    491492        $loop_count = 2;
    492493        do {
    493             if (!WC()->session->has_session() ||
    494                 WC()->session->get('triplea_cart_total') != WC()->cart->total ||
    495                 WC()->session->get('triplea_payment_order_currency') != get_woocommerce_currency()) {
     494            if (!WC()->session->has_session()) {
     495                // if (!WC()->session->has_session() ||
     496                //     WC()->session->get('triplea_cart_total') != WC()->cart->total ||
     497                //     WC()->session->get('triplea_payment_order_currency') != get_woocommerce_currency()) {
    496498                $session_exists           = false;
    497499                $payment_form_data_exists = false;
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.20/readme.txt

    r3120922 r3127174  
    66Tags: stablecoins, crypto payments, crypto ownership, crypto payment gateway, crypto
    77Requires at least: 5.5
    8 Tested up to: 6.5.4
    9 Stable tag: 2.0.19
     8Tested up to: 6.6.1
     9Stable tag: 2.0.20
    1010Requires PHP: 7.0
    1111License: GPLv2 or later
     
    109109== Changelog ==
    110110
     111= 2.0.20 =
     112Added: Removed depreciated error
     113
    111114= 2.0.19 =
    112115Added: Payment session removed when currenc/total ammount changes
     
    311314== Upgrade Notice ==
    312315
    313 = 2.0.18 =
     316= 2.0.20 =
     317Simply install the update. No further action is needed.
     318
     319= 2.0.19 =
    314320Simply install the update. No further action is needed.
    315321
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.20/triplea-cryptocurrency-payment-gateway-for-woocommerce.php

    r3120922 r3127174  
    1717 * Plugin URI:        https://wordpress.org/plugins/triplea-cryptocurrency-payment-gateway-for-woocommerce/
    1818 * Description:       Offer cryptocurrency as a payment option on your website and get access to even more clients. Receive payments in cryptocurrency or in your local currency, directly in your bank account. Enjoy an easy setup, no cryptocurrency expertise required. Powered by Triple-A.
    19  * Version:           2.0.19
     19 * Version:           2.0.20
    2020 * Author:            Triple-A Team
    2121 * Author URI:        https://triple-a.io
     
    4949     * $var string
    5050     */
    51     public const version = '2.0.19';
     51    public const version = '2.0.20';
    5252
    5353    /*
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/includes/WooCommerce/TripleA_Payment_Gateway.php

    r3120922 r3127174  
    2424    protected $triplea_client_secret_key;
    2525    protected $triplea_client_public_key;
     26    protected $test_mode;
    2627
    2728    /**
     
    491492        $loop_count = 2;
    492493        do {
    493             if (!WC()->session->has_session() ||
    494                 WC()->session->get('triplea_cart_total') != WC()->cart->total ||
    495                 WC()->session->get('triplea_payment_order_currency') != get_woocommerce_currency()) {
     494            if (!WC()->session->has_session()) {
     495                // if (!WC()->session->has_session() ||
     496                //     WC()->session->get('triplea_cart_total') != WC()->cart->total ||
     497                //     WC()->session->get('triplea_payment_order_currency') != get_woocommerce_currency()) {
    496498                $session_exists           = false;
    497499                $payment_form_data_exists = false;
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/readme.txt

    r3120922 r3127174  
    66Tags: stablecoins, crypto payments, crypto ownership, crypto payment gateway, crypto
    77Requires at least: 5.5
    8 Tested up to: 6.5.4
    9 Stable tag: 2.0.19
     8Tested up to: 6.6.1
     9Stable tag: 2.0.20
    1010Requires PHP: 7.0
    1111License: GPLv2 or later
     
    109109== Changelog ==
    110110
     111= 2.0.20 =
     112Added: Removed depreciated error
     113
    111114= 2.0.19 =
    112115Added: Payment session removed when currenc/total ammount changes
     
    311314== Upgrade Notice ==
    312315
    313 = 2.0.18 =
     316= 2.0.20 =
     317Simply install the update. No further action is needed.
     318
     319= 2.0.19 =
    314320Simply install the update. No further action is needed.
    315321
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/triplea-cryptocurrency-payment-gateway-for-woocommerce.php

    r3120922 r3127174  
    1717 * Plugin URI:        https://wordpress.org/plugins/triplea-cryptocurrency-payment-gateway-for-woocommerce/
    1818 * Description:       Offer cryptocurrency as a payment option on your website and get access to even more clients. Receive payments in cryptocurrency or in your local currency, directly in your bank account. Enjoy an easy setup, no cryptocurrency expertise required. Powered by Triple-A.
    19  * Version:           2.0.19
     19 * Version:           2.0.20
    2020 * Author:            Triple-A Team
    2121 * Author URI:        https://triple-a.io
     
    4949     * $var string
    5050     */
    51     public const version = '2.0.19';
     51    public const version = '2.0.20';
    5252
    5353    /*
Note: See TracChangeset for help on using the changeset viewer.