Plugin Directory

Changeset 3076441


Ignore:
Timestamp:
04/24/2024 12:22:56 PM (2 years ago)
Author:
ecommpay
Message:

new version 3.4.1

Location:
ecommpay-payments/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • ecommpay-payments/trunk/assets/js/frontend-helpers.js

    r3054258 r3076441  
    33   * Wrapper available payment methods on checkout page
    44   */
    5   var $paymentMethodsWrapper = document.querySelector(
    6     "#order_review.woocommerce-checkout-review-order"
    7   )
     5  var $paymentMethodsWrapper = document.querySelector("#payment")?.parentElement;
    86
    97  if (!$paymentMethodsWrapper) {
  • ecommpay-payments/trunk/common/class-ecp-core.php

    r3054258 r3076441  
    4343     * @since 2.0.0
    4444     */
    45     const WC_ECP_VERSION = '3.4.0';
     45    const WC_ECP_VERSION = '3.4.1';
    4646    // endregion
    4747
  • ecommpay-payments/trunk/common/modules/class-ecp-gateway-module-payment-page.php

    r3054258 r3076441  
    395395            $order = ecp_get_order($order_id);
    396396            $payment_currency = $order->get_currency();
    397             $payment_amount = ecp_price_multiply($order->get_total(), $payment_currency);
     397            $payment_amount = ecp_price_multiply($order->get_total(), $order->get_currency());
    398398            $order->set_payment_system(Ecp_Gateway_Operation_Status::AWAITING_CUSTOMER);
    399399        } else {
  • ecommpay-payments/trunk/gateway-ecommpay.php

    r3054258 r3076441  
    55 * GitHub Plugin URI:
    66 * Description:       Easy payment from WooCommerce by different methods in single Payment Page.
    7  * Version:           3.4.0
     7 * Version:           3.4.1
    88 * License:           GPL2
    99 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
  • ecommpay-payments/trunk/readme.txt

    r3054258 r3076441  
    44Requires at least: 4.0.0
    55Tested up to: 6.4
    6 Stable tag: 3.4.0
     6Stable tag: 3.4.1
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.