Changeset 3076441
- Timestamp:
- 04/24/2024 12:22:56 PM (2 years ago)
- Location:
- ecommpay-payments/trunk
- Files:
-
- 5 edited
-
assets/js/frontend-helpers.js (modified) (1 diff)
-
common/class-ecp-core.php (modified) (1 diff)
-
common/modules/class-ecp-gateway-module-payment-page.php (modified) (1 diff)
-
gateway-ecommpay.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ecommpay-payments/trunk/assets/js/frontend-helpers.js
r3054258 r3076441 3 3 * Wrapper available payment methods on checkout page 4 4 */ 5 var $paymentMethodsWrapper = document.querySelector( 6 "#order_review.woocommerce-checkout-review-order" 7 ) 5 var $paymentMethodsWrapper = document.querySelector("#payment")?.parentElement; 8 6 9 7 if (!$paymentMethodsWrapper) { -
ecommpay-payments/trunk/common/class-ecp-core.php
r3054258 r3076441 43 43 * @since 2.0.0 44 44 */ 45 const WC_ECP_VERSION = '3.4. 0';45 const WC_ECP_VERSION = '3.4.1'; 46 46 // endregion 47 47 -
ecommpay-payments/trunk/common/modules/class-ecp-gateway-module-payment-page.php
r3054258 r3076441 395 395 $order = ecp_get_order($order_id); 396 396 $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()); 398 398 $order->set_payment_system(Ecp_Gateway_Operation_Status::AWAITING_CUSTOMER); 399 399 } else { -
ecommpay-payments/trunk/gateway-ecommpay.php
r3054258 r3076441 5 5 * GitHub Plugin URI: 6 6 * Description: Easy payment from WooCommerce by different methods in single Payment Page. 7 * Version: 3.4. 07 * Version: 3.4.1 8 8 * License: GPL2 9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html -
ecommpay-payments/trunk/readme.txt
r3054258 r3076441 4 4 Requires at least: 4.0.0 5 5 Tested up to: 6.4 6 Stable tag: 3.4. 06 Stable tag: 3.4.1 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.