Changeset 2235569
- Timestamp:
- 01/30/2020 04:26:54 AM (6 years ago)
- Location:
- ezcount/trunk
- Files:
-
- 2 edited
-
EZcount.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ezcount/trunk/EZcount.php
r2153032 r2235569 4 4 * Plugin URI: 5 5 * Description: invoicing, clearing and paypal integration plugin. 6 * Version: 1.5. 26 * Version: 1.5.3 7 7 * Author: EZcount 8 8 * Author URI: … … 316 316 317 317 if (!$secretTransactionId) { 318 $msg = "transaction transaction_id failed, is your cookies server correctly?\n\n " . json_encode([318 $msg = "transaction transaction_id failed, is your cookies server correctly?\n\nAlso This might happen if you have more then one of our Iframes in your code, please check your source code, and see if the Iframe appears more than once\n\n" . json_encode([ 319 319 'secretTransactionId' => $secretTransactionId, 320 320 'encryptedCookie' => $encryptedCookie, … … 347 347 $customer_city = (version_compare(WC_VERSION, '2.7', '<')) ? $order->billing_city : $order->get_billing_city(); 348 348 $customer_state = (version_compare(WC_VERSION, '2.7', '<')) ? $order->billing_state : $order->get_billing_state(); 349 $customer_postcode = (version_compare(WC_VERSION, '2.7', '<')) ? $order-> customer_postcode : $order->get_billing_postcode();349 $customer_postcode = (version_compare(WC_VERSION, '2.7', '<')) ? $order->billing_postcode : $order->get_billing_postcode(); 350 350 $order_key = (version_compare(WC_VERSION, '2.7', '<')) ? $order->order_key : $order->get_order_key(); 351 351 … … 459 459 // reciept will include 460 460 // "forceItemsIntoNonItemsDocument" => true, 461 // rebalance the values462 //"auto_balance" => true,463 );461 // rebalance the values 462 "auto_balance" => true, 463 ); 464 464 465 465 //invoice! -
ezcount/trunk/readme.txt
r2153032 r2235569 4 4 Tags : invoicing, clearing and paypal integration plugin. 5 5 Tested up to: 4.9.8 6 Version : 1.5. 26 Version : 1.5.3 7 7 Stable tag: trunk 8 8 Requires PHP: 5.4
Note: See TracChangeset
for help on using the changeset viewer.