Plugin Directory

Changeset 2428302


Ignore:
Timestamp:
11/30/2020 01:41:28 AM (5 years ago)
Author:
codisto
Message:

http://plugins.svn.wordpress.org/codistoconnect/tags/1.3.54

Location:
codistoconnect/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • codistoconnect/trunk/changelog.txt

    r2380745 r2428302  
    11*** WooCommerce Amazon and eBay Integration ***
     2
     32020-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
    27
    382020-09-14 - version 1.3.53
  • codistoconnect/trunk/connect.php

    r2380745 r2428302  
    66 * Author: Codisto
    77 * Author URI: https://codisto.com/
    8  * Version: 1.3.53
     8 * Version: 1.3.54
    99 * Text Domain: codisto-linq
    1010 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2
    1111 * WC requires at least: 2.0.0
    12  * WC tested up to: 4.5.1
     12 * WC tested up to: 4.7.1
    1313 * License: GPLv2
    1414 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1515 *
    1616 * @package Codisto LINQ by Codisto
    17  * @version 1.3.53
     17 * @version 1.3.54
    1818 */
    1919
     
    2222}
    2323
    24 define( 'CODISTOCONNECT_VERSION', '1.3.53' );
     24define( 'CODISTOCONNECT_VERSION', '1.3.54' );
    2525define( 'CODISTOCONNECT_RESELLERKEY', '' );
    2626
     
    15941594                        if ( $ordercontent->paymentstatus == 'complete' ) {
    15951595                            $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)) {
    15981599                                update_post_meta( $order_id, '_payment_method', 'paypal' );
    15991600                                update_post_meta( $order_id, '_payment_method_title', __( 'PayPal', 'woocommerce' ) );
     
    16531654                        if ( $ordercontent->paymentstatus == 'complete' ) {
    16541655                            $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)) {
    16571659                                update_post_meta( $order_id, '_payment_method', 'paypal' );
    16581660                                update_post_meta( $order_id, '_payment_method_title', __( 'PayPal', 'woocommerce' ) );
  • codistoconnect/trunk/readme.txt

    r2380745 r2428302  
    33Tags: ecommerce, e-commerce, woocommerce, ebay, amazon, paypal, integration, multi-channel, listings, store, sales, sell, shop
    44Requires at least: 4.0
    5 Tested up to: 5.5.1
    6 Stable tag: 1.3.53
     5Tested up to: 5.5.3
     6Stable tag: 1.3.54
    77License: GPLv2
    88License URI: https://www.gnu.org/licenses/gpl-2.0.txt
     
    9797== Changelog ==
    9898
     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
    99104= 1.3.53 - 27/08/2020 =
    100105* Fix - stop errors when attempting to sync deleted variation children
Note: See TracChangeset for help on using the changeset viewer.