Changeset 3316762
- Timestamp:
- 06/24/2025 07:31:35 AM (9 months ago)
- Location:
- ecommpay-payments/trunk
- Files:
-
- 4 edited
-
common/EcpCore.php (modified) (1 diff)
-
common/modules/EcpModulePaymentPage.php (modified) (1 diff)
-
gateway-ecommpay.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ecommpay-payments/trunk/common/EcpCore.php
r3267715 r3316762 63 63 * @since 2.0.0 64 64 */ 65 public const WC_ECP_VERSION = '4.1. 0';65 public const WC_ECP_VERSION = '4.1.1'; 66 66 67 67 public const ECOMMPAY_PAYMENT_METHOD = 'ecommpay'; -
ecommpay-payments/trunk/common/modules/EcpModulePaymentPage.php
r3267715 r3316762 462 462 $order_id = wc_get_order_id_by_order_key( $order_key ); 463 463 $order = ecp_get_order( $order_id ); 464 if ( ! $order ->is_ecp() ) {464 if ( ! $order || ! $order->is_ecp() ) { 465 465 return; 466 466 } -
ecommpay-payments/trunk/gateway-ecommpay.php
r3267715 r3316762 5 5 * GitHub Plugin URI: 6 6 * Description: Easy payment from WooCommerce by different methods in single Payment Page. 7 * Version: 4.1. 07 * Version: 4.1.1 8 8 * License: GPL2 9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html -
ecommpay-payments/trunk/readme.txt
r3267715 r3316762 4 4 Requires at least: 6.2 5 5 Tested up to: 6.7 6 Stable tag: 4.1. 06 Stable tag: 4.1.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.