Plugin Directory

Changeset 2324103


Ignore:
Timestamp:
06/15/2020 03:36:41 AM (6 years ago)
Author:
codisto
Message:

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

Location:
codistoconnect/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • codistoconnect/trunk/changelog.txt

    r2322799 r2324103  
    11*** WooCommerce Amazon and eBay Integration ***
     2
     32020-06-15 - version 1.3.50
     4* Update - improve shipping tracking sync performance
    25
    362020-06-12 - version 1.3.49
  • codistoconnect/trunk/connect.php

    r2324075 r2324103  
    44 * Plugin URI: http://wordpress.org/plugins/codistoconnect/
    55 * Description: WooCommerce Amazon & eBay Integration - Convert a WooCommerce store into a fully integrated Amazon & eBay store in minutes
    6  * Author: Codisto 
     6 * Author: Codisto
    77 * Author URI: https://codisto.com/
    8  * Version: 1.3.49
     8 * Version: 1.3.50
    99 * Text Domain: codisto-linq
    1010 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2
     
    1515 *
    1616 * @package Codisto LINQ by Codisto
    17  * @version 1.3.49
     17 * @version 1.3.50
    1818 */
    1919
     
    2222}
    2323
    24 define( 'CODISTOCONNECT_VERSION', '1.3.49' );
     24define( 'CODISTOCONNECT_VERSION', '1.3.50' );
    2525define( 'CODISTOCONNECT_RESELLERKEY', '' );
    2626
     
    940940                                ")".
    941941                            ") AS id, ".
    942                         " ID AS post_id, post_status AS status FROM `{$wpdbsiteprefix}posts` AS P WHERE post_type = 'shop_order' AND ID IN (".
     942                        " ID AS post_id, post_status AS status FROM `{$wpdbsiteprefix}posts` AS P".
     943                        " WHERE post_type = 'shop_order'".
     944                        " AND post_date > DATE_SUB( CURRENT_TIMESTAMP(), INTERVAL 90 DAY )".
     945                        " AND ID IN (".
    943946                            "SELECT post_id FROM `{$wpdbsiteprefix}postmeta` WHERE meta_key = '_codisto_orderid' AND (".
    944947                                "EXISTS ( SELECT 1 FROM `{$wpdbsiteprefix}postmeta` WHERE meta_key = '_codisto_merchantid' AND meta_value = %d AND post_id = P.id ) ".
     
    956959                    $total_count = $wpdb->get_var(
    957960                        $wpdb->prepare(
    958                             "SELECT COUNT(*) FROM `{$wpdbsiteprefix}posts` AS P WHERE post_type = 'shop_order' AND ID IN ( SELECT post_id FROM `{$wpdbsiteprefix}postmeta` WHERE meta_key = '_codisto_orderid' AND ( EXISTS ( SELECT 1 FROM `{$wpdbsiteprefix}postmeta` WHERE meta_key = '_codisto_merchantid' AND meta_value = %d AND post_id = P.id ) OR NOT EXISTS (SELECT 1 FROM `{$wpdbsiteprefix}postmeta` WHERE meta_key = '_codisto_merchantid' AND post_id = P.id )))",
     961                            "SELECT COUNT(*) FROM `{$wpdbsiteprefix}posts` AS P WHERE post_type = 'shop_order' AND post_date > DATE_SUB( CURRENT_TIMESTAMP(), INTERVAL 90 DAY ) AND ID IN ( SELECT post_id FROM `{$wpdbsiteprefix}postmeta` WHERE meta_key = '_codisto_orderid' AND ( EXISTS ( SELECT 1 FROM `{$wpdbsiteprefix}postmeta` WHERE meta_key = '_codisto_merchantid' AND meta_value = %d AND post_id = P.id ) OR NOT EXISTS (SELECT 1 FROM `{$wpdbsiteprefix}postmeta` WHERE meta_key = '_codisto_merchantid' AND post_id = P.id )))",
    959962                            $merchantid
    960963                        )
  • codistoconnect/trunk/readme.txt

    r2322799 r2324103  
    9797== Changelog ==
    9898
     99= 1.3.50 - 15/06/2020 =
     100* Update - improve shipping tracking sync performance
     101
    99102= 1.3.49 - 12/06/2020 =
    100103* Update - menu support for new home page
Note: See TracChangeset for help on using the changeset viewer.