Version Description
- WC 3.5.1 Tested OK.
- Bug fix and Improvements.
Download this release
Release Info
Developer | webtoffee |
Plugin | Order Export & Order Import for WooCommerce |
Version | 1.3.8 |
Comparing to | |
See all releases |
Code changes from version 1.3.7 to 1.3.8
Sample_Coupon.csv
CHANGED
File without changes
|
Sample_Subscription.csv
CHANGED
File without changes
|
includes/exporter/class-wf-cpnimpexpcsv-exporter.php
CHANGED
@@ -29,7 +29,9 @@ class WF_CpnImpExpCsv_Exporter {
|
|
29 |
if (function_exists('apache_setenv'))
|
30 |
@apache_setenv('no-gzip', 1);
|
31 |
@ini_set('zlib.output_compression', 0);
|
32 |
-
|
|
|
|
|
33 |
|
34 |
|
35 |
header('Content-Type: text/csv; charset=UTF-8');
|
29 |
if (function_exists('apache_setenv'))
|
30 |
@apache_setenv('no-gzip', 1);
|
31 |
@ini_set('zlib.output_compression', 0);
|
32 |
+
if(apply_filters('wt_order_export_ob_clean_enable_flag', TRUE)){
|
33 |
+
@ob_clean();
|
34 |
+
}
|
35 |
|
36 |
|
37 |
header('Content-Type: text/csv; charset=UTF-8');
|
includes/exporter/class-wf-orderimpexpcsv-exporter.php
CHANGED
@@ -29,7 +29,9 @@ class WF_OrderImpExpCsv_Exporter {
|
|
29 |
if (function_exists('apache_setenv'))
|
30 |
@apache_setenv('no-gzip', 1);
|
31 |
@ini_set('zlib.output_compression', 0);
|
32 |
-
|
|
|
|
|
33 |
|
34 |
header('Content-Type: text/csv; charset=UTF-8');
|
35 |
header('Content-Disposition: attachment; filename=woocommerce-order-export.csv');
|
29 |
if (function_exists('apache_setenv'))
|
30 |
@apache_setenv('no-gzip', 1);
|
31 |
@ini_set('zlib.output_compression', 0);
|
32 |
+
if(apply_filters('wt_order_export_ob_clean_enable_flag', TRUE)){
|
33 |
+
@ob_clean();
|
34 |
+
}
|
35 |
|
36 |
header('Content-Type: text/csv; charset=UTF-8');
|
37 |
header('Content-Disposition: attachment; filename=woocommerce-order-export.csv');
|
order-import-export.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.3.
|
10 |
Text Domain: wf_order_import_export
|
11 |
-
WC tested up to: 3.5.
|
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.3.
|
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.3.8
|
10 |
Text Domain: wf_order_import_export
|
11 |
+
WC tested up to: 3.5.1
|
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.3.8");
|
28 |
}
|
29 |
|
30 |
/**
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.webtoffee.com/plugins/
|
|
4 |
Tags: Order Export, Order Import, WooCommerce Export Orders , WooCommerce Import Orders , Export Orders, Import Orders
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.9.8
|
7 |
-
Stable tag: 1.3.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -21,7 +21,7 @@ This is perfect tool if you are migrating an existing shop on a different eComme
|
|
21 |
🔸 Import Coupons from CSV file.
|
22 |
🔸 Export Subscription Orders to CSV file(Premium Feature).
|
23 |
🔸 Import Subscription Orders from CSV file(Premium Feature).
|
24 |
-
🔸 Tested OK with WooCommerce 3.5.
|
25 |
|
26 |
<blockquote>
|
27 |
|
@@ -110,6 +110,9 @@ Yes. You can import or export order line item details.
|
|
110 |
|
111 |
== Changelog ==
|
112 |
|
|
|
|
|
|
|
113 |
= 1.3.7 =
|
114 |
* WC 3.5.0 Tested OK.
|
115 |
= 1.3.6 =
|
@@ -198,5 +201,6 @@ Yes. You can import or export order line item details.
|
|
198 |
* Export /Import WooCommerce Orders.
|
199 |
|
200 |
== Upgrade Notice ==
|
201 |
-
= 1.3.
|
202 |
-
* WC 3.5.
|
|
4 |
Tags: Order Export, Order Import, WooCommerce Export Orders , WooCommerce Import Orders , Export Orders, Import Orders
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.9.8
|
7 |
+
Stable tag: 1.3.8
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
21 |
🔸 Import Coupons from CSV file.
|
22 |
🔸 Export Subscription Orders to CSV file(Premium Feature).
|
23 |
🔸 Import Subscription Orders from CSV file(Premium Feature).
|
24 |
+
🔸 Tested OK with WooCommerce 3.5.1
|
25 |
|
26 |
<blockquote>
|
27 |
|
110 |
|
111 |
== Changelog ==
|
112 |
|
113 |
+
= 1.3.8 =
|
114 |
+
* WC 3.5.1 Tested OK.
|
115 |
+
* Bug fix and Improvements.
|
116 |
= 1.3.7 =
|
117 |
* WC 3.5.0 Tested OK.
|
118 |
= 1.3.6 =
|
201 |
* Export /Import WooCommerce Orders.
|
202 |
|
203 |
== Upgrade Notice ==
|
204 |
+
= 1.3.8 =
|
205 |
+
* WC 3.5.1 Tested OK.
|
206 |
+
* Bug fix and Improvements.
|