Version Description
- Tested OK with WC 4.7.0 and WP 5.5.3
Download this release
Release Info
Developer | webtoffee |
Plugin | Order Export & Order Import for WooCommerce |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0 to 1.7.1
includes/importer/class-wf-orderimpexpcsv-order-import.php
CHANGED
@@ -458,6 +458,7 @@ class WF_OrderImpExpCsv_Order_Import extends WP_Importer {
|
|
458 |
public function order_exists($orderID) {
|
459 |
global $wpdb;
|
460 |
$query = "SELECT ID FROM $wpdb->posts WHERE post_type = 'shop_order' AND post_status IN ( 'wc-pending', 'wc-processing', 'wc-completed', 'wc-on-hold', 'wc-failed' , 'wc-refunded', 'wc-cancelled')";
|
|
|
461 |
$args = array();
|
462 |
$posts_are_exist = @$wpdb->get_col($wpdb->prepare($query, $args));
|
463 |
|
458 |
public function order_exists($orderID) {
|
459 |
global $wpdb;
|
460 |
$query = "SELECT ID FROM $wpdb->posts WHERE post_type = 'shop_order' AND post_status IN ( 'wc-pending', 'wc-processing', 'wc-completed', 'wc-on-hold', 'wc-failed' , 'wc-refunded', 'wc-cancelled')";
|
461 |
+
$query = apply_filters('wt_orderimpexpcsv_import_order_exists_check_query', $query);
|
462 |
$args = array();
|
463 |
$posts_are_exist = @$wpdb->get_col($wpdb->prepare($query, $args));
|
464 |
|
order-import-export-for-woocommerce.php
CHANGED
@@ -6,9 +6,9 @@ Plugin URI: https://wordpress.org/plugins/order-import-export-for-woocommerce/
|
|
6 |
Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
|
7 |
Author: WebToffee
|
8 |
Author URI: https://www.webtoffee.com/product/woocommerce-order-coupon-subscription-export-import/
|
9 |
-
Version: 1.7.
|
10 |
Text Domain: order-import-export-for-woocommerce
|
11 |
-
WC tested up to: 4.
|
12 |
License: GPLv3
|
13 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
14 |
*/
|
@@ -24,7 +24,7 @@ define("WF_CPN_IMP_EXP_ID", "wf_cpn_imp_exp");
|
|
24 |
define("wf_coupon_csv_im_ex", "wf_coupon_csv_im_ex");
|
25 |
|
26 |
if (!defined('WF_ORDERIMPEXP_CURRENT_VERSION')) {
|
27 |
-
define("WF_ORDERIMPEXP_CURRENT_VERSION", "1.7.
|
28 |
}
|
29 |
|
30 |
/**
|
6 |
Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
|
7 |
Author: WebToffee
|
8 |
Author URI: https://www.webtoffee.com/product/woocommerce-order-coupon-subscription-export-import/
|
9 |
+
Version: 1.7.1
|
10 |
Text Domain: order-import-export-for-woocommerce
|
11 |
+
WC tested up to: 4.7.0
|
12 |
License: GPLv3
|
13 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
14 |
*/
|
24 |
define("wf_coupon_csv_im_ex", "wf_coupon_csv_im_ex");
|
25 |
|
26 |
if (!defined('WF_ORDERIMPEXP_CURRENT_VERSION')) {
|
27 |
+
define("WF_ORDERIMPEXP_CURRENT_VERSION", "1.7.1");
|
28 |
}
|
29 |
|
30 |
/**
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: order export, order import, woocommerce export orders, woocommerce import
|
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 1.7.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -22,7 +22,7 @@ This is a perfect tool if you are migrating an existing shop on a different eCom
|
|
22 |
🔸 Import Coupons from CSV file.
|
23 |
🔸 Export Subscription Orders to CSV file(Premium Feature).
|
24 |
🔸 Import Subscription Orders from CSV file(Premium Feature).
|
25 |
-
🔸 Tested OK with WooCommerce 4.
|
26 |
🔸 Tested OK with PHP 7.3.5
|
27 |
|
28 |
<blockquote>
|
@@ -118,6 +118,8 @@ By default, admin and store manager are given access to export orders from your
|
|
118 |
|
119 |
== Changelog ==
|
120 |
|
|
|
|
|
121 |
= 1.7.0 =
|
122 |
* Tested OK with WC 4.6.0
|
123 |
= 1.6.9 =
|
@@ -306,5 +308,5 @@ By default, admin and store manager are given access to export orders from your
|
|
306 |
|
307 |
== Upgrade Notice ==
|
308 |
|
309 |
-
= 1.7.
|
310 |
-
* Tested OK with WC 4.
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.7.1
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
22 |
🔸 Import Coupons from CSV file.
|
23 |
🔸 Export Subscription Orders to CSV file(Premium Feature).
|
24 |
🔸 Import Subscription Orders from CSV file(Premium Feature).
|
25 |
+
🔸 Tested OK with WooCommerce 4.7.0
|
26 |
🔸 Tested OK with PHP 7.3.5
|
27 |
|
28 |
<blockquote>
|
118 |
|
119 |
== Changelog ==
|
120 |
|
121 |
+
= 1.7.1 =
|
122 |
+
* Tested OK with WC 4.7.0 and WP 5.5.3
|
123 |
= 1.7.0 =
|
124 |
* Tested OK with WC 4.6.0
|
125 |
= 1.6.9 =
|
308 |
|
309 |
== Upgrade Notice ==
|
310 |
|
311 |
+
= 1.7.1 =
|
312 |
+
* Tested OK with WC 4.7.0 and WP 5.5.3
|