Changeset 3014526
- Timestamp:
- 12/27/2023 05:58:02 AM (2 years ago)
- Location:
- chaiport-payment/trunk
- Files:
-
- 2 edited
-
chaiportGateway.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
chaiport-payment/trunk/chaiportGateway.php
r2948491 r3014526 4 4 * Plugin URI: https://www.docs.portone.cloud/plugins_and_sdks/woocommerce-plugin.html 5 5 * Description: Single Payment 6 * Version: 2.0. 86 * Version: 2.0.9 7 7 * Requires at least: 5.6 8 8 * Author: PortOne … … 839 839 "default_guest_checkout" => $this->getOptionBool('default_guest_checkout'), 840 840 "environment" => $environment, 841 "source" => "woocommerce" 841 "source" => "woocommerce", 842 "customer_details" => array( 843 "email_address" => $order->get_billing_email(), 844 "phone_number" => $order->get_billing_phone(), 845 "name" => $order->get_billing_first_name() . " " . $order->get_billing_last_name() 846 ) 842 847 ); 843 848 } else { … … 861 866 "default_guest_checkout" => $this->getOptionBool('default_guest_checkout'), 862 867 "environment" => $environment, 863 "source" => "woocommerce" 868 "source" => "woocommerce", 869 "customer_details" => array( 870 "email_address" => $order->get_billing_email(), 871 "phone_number" => $order->get_billing_phone(), 872 "name" => $order->get_billing_first_name() . " " . $order->get_billing_last_name() 873 ) 864 874 ); 865 875 } -
chaiport-payment/trunk/readme.txt
r2948491 r3014526 4 4 Requires at least: 3.9.2 5 5 Tested up to: 6.1.1 6 Stable tag: 2.0. 86 Stable tag: 2.0.9 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.