Version Description
- Faq update: Refresh WooCommerce customer list after import
Download this release
Release Info
Developer | webtoffee |
Plugin | Import Export WordPress Users and WooCommerce Customers |
Version | 2.1.6 |
Comparing to | |
See all releases |
Code changes from version 2.1.5 to 2.1.6
admin/modules/export/export.php
CHANGED
@@ -126,7 +126,7 @@ class Wt_Import_Export_For_Woo_Basic_Export
|
|
126 |
$fields['default_export_batch']=array(
|
127 |
'label'=>__("Default Export batch count"),
|
128 |
'type'=>'number',
|
129 |
-
'value' =>
|
130 |
'field_name'=>'default_export_batch',
|
131 |
'help_text'=>__('Provide the default count for the records to be exported in a batch.'),
|
132 |
'validation_rule'=>array('type'=>'absint'),
|
126 |
$fields['default_export_batch']=array(
|
127 |
'label'=>__("Default Export batch count"),
|
128 |
'type'=>'number',
|
129 |
+
'value' =>100,
|
130 |
'field_name'=>'default_export_batch',
|
131 |
'help_text'=>__('Provide the default count for the records to be exported in a batch.'),
|
132 |
'validation_rule'=>array('type'=>'absint'),
|
admin/modules/history/history.php
CHANGED
@@ -162,7 +162,10 @@ class Wt_Import_Export_For_Woo_Basic_History
|
|
162 |
include plugin_dir_path(__FILE__).'views/_log_table.php';
|
163 |
$out['html']=ob_get_clean();
|
164 |
}
|
165 |
-
}
|
|
|
|
|
|
|
166 |
}
|
167 |
}
|
168 |
}else /* raw log viewing */
|
162 |
include plugin_dir_path(__FILE__).'views/_log_table.php';
|
163 |
$out['html']=ob_get_clean();
|
164 |
}
|
165 |
+
}else{
|
166 |
+
$out['status']=1;
|
167 |
+
$out['html']= sprintf( __( 'Please check the Save import log is enabled under <a target = "_blank" href="%s">settings</a>' ), admin_url('admin.php?page=wt_import_export_for_woo_basic'));
|
168 |
+
}
|
169 |
}
|
170 |
}
|
171 |
}else /* raw log viewing */
|
admin/modules/import/import.php
CHANGED
@@ -983,7 +983,7 @@ class Wt_Import_Export_For_Woo_Basic_Import
|
|
983 |
/**
|
984 |
* Writing import log to file
|
985 |
*/
|
986 |
-
if(!empty($import_response) && is_array($import_response))
|
987 |
{
|
988 |
$log_writer=new Wt_Import_Export_For_Woo_Basic_Logwriter();
|
989 |
$log_file_name=$this->get_log_file_name($import_id);
|
983 |
/**
|
984 |
* Writing import log to file
|
985 |
*/
|
986 |
+
if(!empty($import_response) && is_array($import_response) && Wt_Import_Export_For_Woo_Basic_Common_Helper::get_advanced_settings('enable_import_log')==1)
|
987 |
{
|
988 |
$log_writer=new Wt_Import_Export_For_Woo_Basic_Logwriter();
|
989 |
$log_file_name=$this->get_log_file_name($import_id);
|
includes/class-wt-import-export-for-woo.php
CHANGED
@@ -80,7 +80,7 @@ class Wt_Import_Export_For_Woo_Basic {
|
|
80 |
if ( defined( 'WT_U_IEW_VERSION' ) ) {
|
81 |
$this->version = WT_U_IEW_VERSION;
|
82 |
} else {
|
83 |
-
$this->version = '2.1.
|
84 |
}
|
85 |
$this->plugin_name = 'wt-import-export-for-woo-basic';
|
86 |
|
80 |
if ( defined( 'WT_U_IEW_VERSION' ) ) {
|
81 |
$this->version = WT_U_IEW_VERSION;
|
82 |
} else {
|
83 |
+
$this->version = '2.1.6';
|
84 |
}
|
85 |
$this->plugin_name = 'wt-import-export-for-woo-basic';
|
86 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: user import, user export, csv, woocommerce, customers, import, export, exp
|
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.7
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 2.1.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -189,6 +189,11 @@ This version of the plugin does not support the import or export of user custom
|
|
189 |
|
190 |
Yes, you can update the user data with the help of this plugin. The users will be updated during an import, if the 'If the user exists in the store' field in the Advanced options is set to 'Update'.
|
191 |
|
|
|
|
|
|
|
|
|
|
|
192 |
== Screenshots ==
|
193 |
|
194 |
1. WordPress user export import plugin general settings
|
@@ -217,6 +222,8 @@ Yes, you can update the user data with the help of this plugin. The users will b
|
|
217 |
|
218 |
== Changelog ==
|
219 |
|
|
|
|
|
220 |
= 2.1.5 =
|
221 |
* Text corrections and batch count defaulted to 10
|
222 |
= 2.1.4 =
|
@@ -385,5 +392,5 @@ Yes, you can update the user data with the help of this plugin. The users will b
|
|
385 |
|
386 |
== Upgrade Notice ==
|
387 |
|
388 |
-
= 2.1.
|
389 |
-
*
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.7
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 2.1.6
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
189 |
|
190 |
Yes, you can update the user data with the help of this plugin. The users will be updated during an import, if the 'If the user exists in the store' field in the Advanced options is set to 'Update'.
|
191 |
|
192 |
+
= Imported customers are not listed under WooCommerce customers =
|
193 |
+
|
194 |
+
Please refer the article on how to <a href="https://www.webtoffee.com/refresh-woocommerce-customers-list/">refresh WooCommerce customers list</a>
|
195 |
+
|
196 |
+
|
197 |
== Screenshots ==
|
198 |
|
199 |
1. WordPress user export import plugin general settings
|
222 |
|
223 |
== Changelog ==
|
224 |
|
225 |
+
= 2.1.6 =
|
226 |
+
* Faq update: Refresh WooCommerce customer list after import
|
227 |
= 2.1.5 =
|
228 |
* Text corrections and batch count defaulted to 10
|
229 |
= 2.1.4 =
|
392 |
|
393 |
== Upgrade Notice ==
|
394 |
|
395 |
+
= 2.1.6 =
|
396 |
+
* Faq update: Refresh WooCommerce customer list after import
|
users-customers-import-export-for-wp-woocommerce.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
Description: Export and Import User/Customers details From and To your WordPress/WooCommerce.
|
6 |
Author: WebToffee
|
7 |
Author URI: https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/
|
8 |
-
Version: 2.1.
|
9 |
WC tested up to: 5.3.0
|
10 |
Text Domain: users-customers-import-export-for-wp-woocommerce
|
11 |
License: GPLv3
|
@@ -45,7 +45,7 @@ if (!defined('WT_IEW_DEBUG_BASIC_TROUBLESHOOT')) {
|
|
45 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
46 |
* Rename this for your plugin and update it as you release new versions.
|
47 |
*/
|
48 |
-
define('WT_U_IEW_VERSION', '2.1.
|
49 |
|
50 |
/**
|
51 |
* The code that runs during plugin activation.
|
5 |
Description: Export and Import User/Customers details From and To your WordPress/WooCommerce.
|
6 |
Author: WebToffee
|
7 |
Author URI: https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/
|
8 |
+
Version: 2.1.6
|
9 |
WC tested up to: 5.3.0
|
10 |
Text Domain: users-customers-import-export-for-wp-woocommerce
|
11 |
License: GPLv3
|
45 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
46 |
* Rename this for your plugin and update it as you release new versions.
|
47 |
*/
|
48 |
+
define('WT_U_IEW_VERSION', '2.1.6');
|
49 |
|
50 |
/**
|
51 |
* The code that runs during plugin activation.
|