Changeset 2428302
- Timestamp:
- 11/30/2020 01:41:28 AM (5 years ago)
- Location:
- codistoconnect/trunk
- Files:
-
- 3 edited
-
changelog.txt (modified) (1 diff)
-
connect.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
codistoconnect/trunk/changelog.txt
r2380745 r2428302 1 1 *** WooCommerce Amazon and eBay Integration *** 2 3 2020-11-30 - version 1.3.54 4 * Update - WordPress tested up to 5.5.3 5 * Update - WooCommerce tested up to 4.7.1 6 * Fix - handle eBay Managed Payments payment method correctly 2 7 3 8 2020-09-14 - version 1.3.53 -
codistoconnect/trunk/connect.php
r2380745 r2428302 6 6 * Author: Codisto 7 7 * Author URI: https://codisto.com/ 8 * Version: 1.3.5 38 * Version: 1.3.54 9 9 * Text Domain: codisto-linq 10 10 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2 11 11 * WC requires at least: 2.0.0 12 * WC tested up to: 4. 5.112 * WC tested up to: 4.7.1 13 13 * License: GPLv2 14 14 * License URI: http://www.gnu.org/licenses/gpl-2.0.html 15 15 * 16 16 * @package Codisto LINQ by Codisto 17 * @version 1.3.5 317 * @version 1.3.54 18 18 */ 19 19 … … 22 22 } 23 23 24 define( 'CODISTOCONNECT_VERSION', '1.3.5 3' );24 define( 'CODISTOCONNECT_VERSION', '1.3.54' ); 25 25 define( 'CODISTOCONNECT_RESELLERKEY', '' ); 26 26 … … 1594 1594 if ( $ordercontent->paymentstatus == 'complete' ) { 1595 1595 $transaction_id = (string)$ordercontent->orderpayments[0]->orderpayment->transactionid; 1596 1597 if ( $transaction_id ) { 1596 $paymentmethod = (string)$ordercontent->orderpayments[0]->orderpayment->paymentmethod; 1597 1598 if ( $transaction_id && preg_match('/paypal/i',$paymentmethod)) { 1598 1599 update_post_meta( $order_id, '_payment_method', 'paypal' ); 1599 1600 update_post_meta( $order_id, '_payment_method_title', __( 'PayPal', 'woocommerce' ) ); … … 1653 1654 if ( $ordercontent->paymentstatus == 'complete' ) { 1654 1655 $transaction_id = (string)$ordercontent->orderpayments[0]->orderpayment->transactionid; 1655 1656 if ( $transaction_id ) { 1656 $paymentmethod = (string)$ordercontent->orderpayments[0]->orderpayment->paymentmethod; 1657 1658 if ( $transaction_id && preg_match('/paypal/i',$paymentmethod)) { 1657 1659 update_post_meta( $order_id, '_payment_method', 'paypal' ); 1658 1660 update_post_meta( $order_id, '_payment_method_title', __( 'PayPal', 'woocommerce' ) ); -
codistoconnect/trunk/readme.txt
r2380745 r2428302 3 3 Tags: ecommerce, e-commerce, woocommerce, ebay, amazon, paypal, integration, multi-channel, listings, store, sales, sell, shop 4 4 Requires at least: 4.0 5 Tested up to: 5.5. 16 Stable tag: 1.3.5 35 Tested up to: 5.5.3 6 Stable tag: 1.3.54 7 7 License: GPLv2 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.txt … … 97 97 == Changelog == 98 98 99 = 1.3.54 - 30/11/2020 = 100 * Update - WordPress tested up to 5.5.3 101 * Update - WooCommerce tested up to 4.7.1 102 * Fix - handle eBay Managed Payments payment method correctly 103 99 104 = 1.3.53 - 27/08/2020 = 100 105 * Fix - stop errors when attempting to sync deleted variation children
Note: See TracChangeset
for help on using the changeset viewer.