Version Description
- Fixed Coupon customer import issue.
- WP 4.9.5 and WC 3.3.4 Tested OK
Download this release
Release Info
Developer | mujeebur |
Plugin | Order Export & Order Import for WooCommerce |
Version | 1.3.0 |
Comparing to | |
See all releases |
Code changes from version 1.2.9 to 1.3.0
includes/importer/class-wf-cpnimpexpcsv-coupon-import.php
CHANGED
@@ -842,7 +842,12 @@ class WF_CpnImpExpCsv_Coupon_Import extends WP_Importer {
|
|
842 |
}
|
843 |
else
|
844 |
{
|
845 |
-
|
|
|
|
|
|
|
|
|
|
|
846 |
}
|
847 |
|
848 |
}
|
842 |
}
|
843 |
else
|
844 |
{
|
845 |
+
if($key == 'customer_email'){
|
846 |
+
$data= explode(',', $meta['value']);
|
847 |
+
update_post_meta( $post_id, $key,( $data ) );
|
848 |
+
}else{
|
849 |
+
update_post_meta( $post_id, $key, maybe_unserialize( $meta['value'] ) );
|
850 |
+
}
|
851 |
}
|
852 |
|
853 |
}
|
order-import-export.php
CHANGED
@@ -6,9 +6,9 @@ Plugin URI: https://www.xadapter.com/product/order-import-export-plugin-for-wooc
|
|
6 |
Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
|
7 |
Author: XAdapter
|
8 |
Author URI: https://www.xadapter.com/
|
9 |
-
Version: 1.
|
10 |
Text Domain: wf_order_import_export
|
11 |
-
WC tested up to: 3.3.
|
12 |
*/
|
13 |
|
14 |
if ( ! defined( 'ABSPATH' ) || ! is_admin() ) {
|
@@ -22,7 +22,7 @@ define("WF_CPN_IMP_EXP_ID", "wf_cpn_imp_exp");
|
|
22 |
define("wf_coupon_csv_im_ex", "wf_coupon_csv_im_ex");
|
23 |
|
24 |
if (!defined('WF_ORDERIMPEXP_CURRENT_VERSION')) {
|
25 |
-
define("WF_ORDERIMPEXP_CURRENT_VERSION", "1.
|
26 |
}
|
27 |
|
28 |
/**
|
6 |
Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
|
7 |
Author: XAdapter
|
8 |
Author URI: https://www.xadapter.com/
|
9 |
+
Version: 1.3.0
|
10 |
Text Domain: wf_order_import_export
|
11 |
+
WC tested up to: 3.3.4
|
12 |
*/
|
13 |
|
14 |
if ( ! defined( 'ABSPATH' ) || ! is_admin() ) {
|
22 |
define("wf_coupon_csv_im_ex", "wf_coupon_csv_im_ex");
|
23 |
|
24 |
if (!defined('WF_ORDERIMPEXP_CURRENT_VERSION')) {
|
25 |
+
define("WF_ORDERIMPEXP_CURRENT_VERSION", "1.3.0");
|
26 |
}
|
27 |
|
28 |
/**
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: xadapter, mujeebur
|
|
3 |
Donate link:
|
4 |
Tags: order, coupon, subscription, export, import, woocommerce
|
5 |
Requires at least: 3.0.1
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -76,6 +76,9 @@ Yes. You can import or export order line item details.
|
|
76 |
|
77 |
== Changelog ==
|
78 |
|
|
|
|
|
|
|
79 |
= 1.2.9 =
|
80 |
* Improved UI
|
81 |
* Uninstall feedback
|
@@ -141,6 +144,6 @@ Yes. You can import or export order line item details.
|
|
141 |
* Export /Import WooCommerce Orders.
|
142 |
|
143 |
== Upgrade Notice ==
|
144 |
-
= 1.
|
145 |
-
*
|
146 |
-
*
|
3 |
Donate link:
|
4 |
Tags: order, coupon, subscription, export, import, woocommerce
|
5 |
Requires at least: 3.0.1
|
6 |
+
Tested up to: 4.9.5
|
7 |
+
Stable tag: 1.3.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
76 |
|
77 |
== Changelog ==
|
78 |
|
79 |
+
= 1.3.0 =
|
80 |
+
* Fixed Coupon customer import issue.
|
81 |
+
* WP 4.9.5 and WC 3.3.4 Tested OK
|
82 |
= 1.2.9 =
|
83 |
* Improved UI
|
84 |
* Uninstall feedback
|
144 |
* Export /Import WooCommerce Orders.
|
145 |
|
146 |
== Upgrade Notice ==
|
147 |
+
= 1.3.0 =
|
148 |
+
* Fixed Coupon customer import issue.
|
149 |
+
* WP 4.9.5 and WC 3.3.4 Tested OK
|