Plugin Directory

Changeset 3029379


Ignore:
Timestamp:
01/31/2024 10:32:38 AM (2 years ago)
Author:
clearpayit
Message:

Release v3.8.2.

Location:
clearpay-gateway-for-woocommerce
Files:
1 deleted
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • clearpay-gateway-for-woocommerce/tags/3.8.2/class/WC_Gateway_Clearpay/instalments.html.php

    r2959052 r3029379  
    55 */
    66
    7 if ($this->settings['testmode'] != 'production') {
    8     ?><p class="clearpay-test-mode-warning-text"><?php _e( 'TEST MODE ENABLED', 'woo_clearpay' ); ?></p><?php
    9 }
     7function clearpay_display_payment_schedule($test_mode, $mpid, $order_total, $currency, $page_type = 'checkout') {
    108?>
     9    <?php if ($test_mode != 'production') { ?>
     10        <p class="clearpay-test-mode-warning-text"><?php _e( 'TEST MODE ENABLED', 'woo_clearpay' ); ?></p>
     11    <?php } ?>
    1112    <div
    1213        id="clearpay-widget-container"
    13         data-locale="<?php echo esc_attr($locale); ?>"
     14        data-mpid="<?php echo esc_attr($mpid); ?>"
     15        data-page-type="<?php echo esc_attr($page_type); ?>"
    1416        data-amount="<?php echo esc_attr($order_total); ?>"
    15         data-currency="<?php echo esc_attr($currency); ?>">
    16     </div>
     17        data-currency="<?php echo esc_attr($currency); ?>"></square-placement>
     18<?php
     19}
  • clearpay-gateway-for-woocommerce/tags/3.8.2/clearpay-gateway-for-woocommerce.php

    r3029190 r3029379  
    55 * Author: Clearpay
    66 * Author URI: https://www.clearpay.co.uk/
    7  * Version: 3.8.1
     7 * Version: 3.8.2
    88 * Text Domain: woo_clearpay
    99 * Domain Path: /languages/
     
    4747         *                                          the value in the comments above.
    4848         */
    49         public static $version = '3.8.1';
     49        public static $version = '3.8.2';
    5050
    5151        /**
  • clearpay-gateway-for-woocommerce/tags/3.8.2/readme.txt

    r3029190 r3029379  
    44Requires at least: 4.8.3
    55Tested up to: 6.4.2
    6 Stable tag: 3.8.1
     6Stable tag: 3.8.2
    77License: GNU Public License
    88License URI: https://www.gnu.org/licenses/
     
    4040== Changelog ==
    4141
     42= 3.8.2 =
     43*Release Date: Wednesday, 31 Jan 2024*
     44
     45* Fixed an outdated file that failed to upload during the release of version 3.8.1.
     46
    4247= 3.8.1 =
    4348*Release Date: Wednesday, 31 Jan 2024*
  • clearpay-gateway-for-woocommerce/trunk/class/WC_Gateway_Clearpay/instalments.html.php

    r2959052 r3029379  
    55 */
    66
    7 if ($this->settings['testmode'] != 'production') {
    8     ?><p class="clearpay-test-mode-warning-text"><?php _e( 'TEST MODE ENABLED', 'woo_clearpay' ); ?></p><?php
    9 }
     7function clearpay_display_payment_schedule($test_mode, $mpid, $order_total, $currency, $page_type = 'checkout') {
    108?>
     9    <?php if ($test_mode != 'production') { ?>
     10        <p class="clearpay-test-mode-warning-text"><?php _e( 'TEST MODE ENABLED', 'woo_clearpay' ); ?></p>
     11    <?php } ?>
    1112    <div
    1213        id="clearpay-widget-container"
    13         data-locale="<?php echo esc_attr($locale); ?>"
     14        data-mpid="<?php echo esc_attr($mpid); ?>"
     15        data-page-type="<?php echo esc_attr($page_type); ?>"
    1416        data-amount="<?php echo esc_attr($order_total); ?>"
    15         data-currency="<?php echo esc_attr($currency); ?>">
    16     </div>
     17        data-currency="<?php echo esc_attr($currency); ?>"></square-placement>
     18<?php
     19}
  • clearpay-gateway-for-woocommerce/trunk/clearpay-gateway-for-woocommerce.php

    r3029190 r3029379  
    55 * Author: Clearpay
    66 * Author URI: https://www.clearpay.co.uk/
    7  * Version: 3.8.1
     7 * Version: 3.8.2
    88 * Text Domain: woo_clearpay
    99 * Domain Path: /languages/
     
    4747         *                                          the value in the comments above.
    4848         */
    49         public static $version = '3.8.1';
     49        public static $version = '3.8.2';
    5050
    5151        /**
  • clearpay-gateway-for-woocommerce/trunk/readme.txt

    r3029190 r3029379  
    44Requires at least: 4.8.3
    55Tested up to: 6.4.2
    6 Stable tag: 3.8.1
     6Stable tag: 3.8.2
    77License: GNU Public License
    88License URI: https://www.gnu.org/licenses/
     
    4040== Changelog ==
    4141
     42= 3.8.2 =
     43*Release Date: Wednesday, 31 Jan 2024*
     44
     45* Fixed an outdated file that failed to upload during the release of version 3.8.1.
     46
    4247= 3.8.1 =
    4348*Release Date: Wednesday, 31 Jan 2024*
Note: See TracChangeset for help on using the changeset viewer.