Version Description
- Tested OK with WC 3.7.1 and WP 5.2.3
- Biographical Info reported by (@krsh333 and @wadehammes)
Download this release
Release Info
Developer | webtoffee |
Plugin | Import Export WordPress Users and WooCommerce Customers |
Version | 1.3.3 |
Comparing to | |
See all releases |
Code changes from version 1.3.2 to 1.3.3
- Sample_Users.csv +0 -0
- images/calendar.png +0 -0
- images/csv.png +0 -0
- images/documentation.png +0 -0
- images/setup.png +0 -0
- images/storefrog.png +0 -0
- images/support.png +0 -0
- images/video.png +0 -0
- images/wf-ajax-loader.gif +0 -0
- images/wf-failed.png +0 -0
- images/wf-import.png +0 -0
- images/wf-notice.png +0 -0
- images/wf-success.png +0 -0
- includes/class-wf-customerimpexpcsv-admin-screen.php +0 -0
- includes/class-wf-customerimpexpcsv-ajax-handler.php +0 -0
- includes/class-wt-userimport-uninstall-feedback.php +0 -0
- includes/exporter/class-wf-customerimpexpcsv-exporter.php +0 -0
- includes/exporter/data/data-wf-post-columns.php +1 -0
- includes/importer/class-wf-csv-parser.php +1 -0
- includes/importer/class-wf-customerimpexpcsv-customer-import.php +3 -1
- includes/importer/class-wf-customerimpexpcsv-importer.php +0 -0
- includes/importer/data/data-wf-reserved-fields-pair.php +1 -1
- includes/importer/views/html-wf-import-greeting.php +0 -0
- includes/importer/views/html-wf-import-options.php +0 -0
- includes/importer/views/market.php +0 -0
- includes/settings/class-wf-customerimpexpcsv-settings.php +0 -0
- includes/views/export/html-wf-export-customers.php +0 -0
- includes/views/export/market.php +0 -0
- includes/views/html-wf-admin-screen.php +0 -0
- includes/views/html-wf-common-header.php +0 -0
- includes/views/html-wf-help-guide.php +0 -0
- includes/views/import/html-wf-import-customers.php +0 -0
- includes/views/market.php +0 -0
- lang/users-customers-import-export-for-wp-woocommerce-de_DE.mo +0 -0
- lang/users-customers-import-export-for-wp-woocommerce-de_DE.po +0 -0
- lang/users-customers-import-export-for-wp-woocommerce-fr_FR.mo +0 -0
- lang/users-customers-import-export-for-wp-woocommerce-fr_FR.po +0 -0
- license.txt +0 -0
- readme.txt +7 -7
- styles/select2.css +0 -0
- styles/select2.js +0 -0
- styles/wf-style.css +0 -0
- temp-import.csv +0 -0
- users-customers-import-export-for-wp-woocommerce.php +3 -3
Sample_Users.csv
CHANGED
File without changes
|
images/calendar.png
CHANGED
File without changes
|
images/csv.png
CHANGED
File without changes
|
images/documentation.png
CHANGED
File without changes
|
images/setup.png
CHANGED
File without changes
|
images/storefrog.png
CHANGED
File without changes
|
images/support.png
CHANGED
File without changes
|
images/video.png
CHANGED
File without changes
|
images/wf-ajax-loader.gif
CHANGED
File without changes
|
images/wf-failed.png
CHANGED
File without changes
|
images/wf-import.png
CHANGED
File without changes
|
images/wf-notice.png
CHANGED
File without changes
|
images/wf-success.png
CHANGED
File without changes
|
includes/class-wf-customerimpexpcsv-admin-screen.php
CHANGED
File without changes
|
includes/class-wf-customerimpexpcsv-ajax-handler.php
CHANGED
File without changes
|
includes/class-wt-userimport-uninstall-feedback.php
CHANGED
File without changes
|
includes/exporter/class-wf-customerimpexpcsv-exporter.php
CHANGED
File without changes
|
includes/exporter/data/data-wf-post-columns.php
CHANGED
@@ -16,6 +16,7 @@ $columns = array(
|
|
16 |
'first_name' => 'first_name',
|
17 |
'last_name' => 'last_name',
|
18 |
'user_status' => 'user_status',
|
|
|
19 |
'roles' => 'roles'
|
20 |
);
|
21 |
|
16 |
'first_name' => 'first_name',
|
17 |
'last_name' => 'last_name',
|
18 |
'user_status' => 'user_status',
|
19 |
+
'description' => 'description',
|
20 |
'roles' => 'roles'
|
21 |
);
|
22 |
|
includes/importer/class-wf-csv-parser.php
CHANGED
@@ -27,6 +27,7 @@ class WF_CSV_Parser {
|
|
27 |
'first_name' => 'first_name',
|
28 |
'last_name' => 'last_name',
|
29 |
'user_status' => 'user_status',
|
|
|
30 |
'roles' => 'roles'
|
31 |
);
|
32 |
}
|
27 |
'first_name' => 'first_name',
|
28 |
'last_name' => 'last_name',
|
29 |
'user_status' => 'user_status',
|
30 |
+
'description' => 'description',
|
31 |
'roles' => 'roles'
|
32 |
);
|
33 |
}
|
includes/importer/class-wf-customerimpexpcsv-customer-import.php
CHANGED
@@ -615,7 +615,8 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
|
|
615 |
$display_name = (!empty($data['user_details']['display_name'])) ? $data['user_details']['display_name'] : '';
|
616 |
$first_name = (!empty($data['user_details']['first_name'])) ? $data['user_details']['first_name'] : '';
|
617 |
$last_name = (!empty($data['user_details']['last_name'])) ? $data['user_details']['last_name'] : '';
|
618 |
-
$user_status = (!empty($data['user_details']['user_status'])) ? $data['user_details']['user_status'] : '';
|
|
|
619 |
wp_update_user( array(
|
620 |
'ID' => $found_customer,
|
621 |
'user_nicename' => $user_nicename,
|
@@ -624,6 +625,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
|
|
624 |
'display_name' => $display_name,
|
625 |
'first_name' => $first_name,
|
626 |
'last_name' => $last_name,
|
|
|
627 |
'user_status' => $user_status,
|
628 |
)
|
629 |
);
|
615 |
$display_name = (!empty($data['user_details']['display_name'])) ? $data['user_details']['display_name'] : '';
|
616 |
$first_name = (!empty($data['user_details']['first_name'])) ? $data['user_details']['first_name'] : '';
|
617 |
$last_name = (!empty($data['user_details']['last_name'])) ? $data['user_details']['last_name'] : '';
|
618 |
+
$user_status = (!empty($data['user_details']['user_status'])) ? $data['user_details']['user_status'] : '';
|
619 |
+
$description = (!empty($data['user_details']['description'])) ? $data['user_details']['description'] : '';
|
620 |
wp_update_user( array(
|
621 |
'ID' => $found_customer,
|
622 |
'user_nicename' => $user_nicename,
|
625 |
'display_name' => $display_name,
|
626 |
'first_name' => $first_name,
|
627 |
'last_name' => $last_name,
|
628 |
+
'description' => $description,
|
629 |
'user_status' => $user_status,
|
630 |
)
|
631 |
);
|
includes/importer/class-wf-customerimpexpcsv-importer.php
CHANGED
File without changes
|
includes/importer/data/data-wf-reserved-fields-pair.php
CHANGED
@@ -15,7 +15,7 @@ $columns = array(
|
|
15 |
'first_name' => 'first_name | first_name',
|
16 |
'last_name' => 'last_name | last_name',
|
17 |
'user_status' => 'user_status | user_status',
|
|
|
18 |
'roles' => 'roles | roles'
|
19 |
);
|
20 |
-
|
21 |
return apply_filters('hf_csv_customer_import_columns', $columns);
|
15 |
'first_name' => 'first_name | first_name',
|
16 |
'last_name' => 'last_name | last_name',
|
17 |
'user_status' => 'user_status | user_status',
|
18 |
+
'description' => 'description',
|
19 |
'roles' => 'roles | roles'
|
20 |
);
|
|
|
21 |
return apply_filters('hf_csv_customer_import_columns', $columns);
|
includes/importer/views/html-wf-import-greeting.php
CHANGED
File without changes
|
includes/importer/views/html-wf-import-options.php
CHANGED
File without changes
|
includes/importer/views/market.php
CHANGED
File without changes
|
includes/settings/class-wf-customerimpexpcsv-settings.php
CHANGED
File without changes
|
includes/views/export/html-wf-export-customers.php
CHANGED
File without changes
|
includes/views/export/market.php
CHANGED
File without changes
|
includes/views/html-wf-admin-screen.php
CHANGED
File without changes
|
includes/views/html-wf-common-header.php
CHANGED
File without changes
|
includes/views/html-wf-help-guide.php
CHANGED
File without changes
|
includes/views/import/html-wf-import-customers.php
CHANGED
File without changes
|
includes/views/market.php
CHANGED
File without changes
|
lang/users-customers-import-export-for-wp-woocommerce-de_DE.mo
CHANGED
File without changes
|
lang/users-customers-import-export-for-wp-woocommerce-de_DE.po
CHANGED
File without changes
|
lang/users-customers-import-export-for-wp-woocommerce-fr_FR.mo
CHANGED
File without changes
|
lang/users-customers-import-export-for-wp-woocommerce-fr_FR.po
CHANGED
File without changes
|
license.txt
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: webtoffee
|
|
3 |
Donate link: https://www.webtoffee.com/plugins/
|
4 |
Tags: Export Users to CSV, Import Users from CSV, woocommerce export customers, user export, export import users, woocommerce import customers, woocommerce export customer email
|
5 |
Requires at least: 3.0.1
|
6 |
-
Tested up to: 5.2.
|
7 |
-
Stable tag: 1.3.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -19,7 +19,7 @@ Import users and export users made fast and simple! Import Export WordPress User
|
|
19 |
|
20 |
🔸 Users Export - Export Users to CSV file.</li>
|
21 |
🔸 Users import - Import Users from CSV format to WordPress/WooCommerce Store.
|
22 |
-
🔸 Tested OK with WooCommerce 3.7.
|
23 |
🔸 Tested OK with PHP 7.3.5
|
24 |
|
25 |
Highlights: WordPress Users Export, WordPress Users CSV Import Suite, Export WordPress Users to CSV. Pro Version supports export and import of all additional user meta like WooCommerce details.
|
@@ -152,6 +152,9 @@ By default, admin and store manager are given access to export users. Please vis
|
|
152 |
|
153 |
== Changelog ==
|
154 |
|
|
|
|
|
|
|
155 |
= 1.3.2 =
|
156 |
* CSV Injection was fixed – reported by one of our user (Javier Olmedo) CVE-2019-15092
|
157 |
= 1.3.1 =
|
@@ -229,7 +232,4 @@ By default, admin and store manager are given access to export users. Please vis
|
|
229 |
= 1.0.0 =
|
230 |
* Export Import WordPress Users.
|
231 |
|
232 |
-
== Upgrade Notice ==
|
233 |
-
|
234 |
-
= 1.3.2 =
|
235 |
-
* CSV Injection was fixed – reported by one of our user (Javier Olmedo) CVE-2019-15092
|
3 |
Donate link: https://www.webtoffee.com/plugins/
|
4 |
Tags: Export Users to CSV, Import Users from CSV, woocommerce export customers, user export, export import users, woocommerce import customers, woocommerce export customer email
|
5 |
Requires at least: 3.0.1
|
6 |
+
Tested up to: 5.2.3
|
7 |
+
Stable tag: 1.3.3
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
19 |
|
20 |
🔸 Users Export - Export Users to CSV file.</li>
|
21 |
🔸 Users import - Import Users from CSV format to WordPress/WooCommerce Store.
|
22 |
+
🔸 Tested OK with WooCommerce 3.7.1
|
23 |
🔸 Tested OK with PHP 7.3.5
|
24 |
|
25 |
Highlights: WordPress Users Export, WordPress Users CSV Import Suite, Export WordPress Users to CSV. Pro Version supports export and import of all additional user meta like WooCommerce details.
|
152 |
|
153 |
== Changelog ==
|
154 |
|
155 |
+
= 1.3.3 =
|
156 |
+
* Tested OK with WC 3.7.1 and WP 5.2.3
|
157 |
+
* Biographical Info – reported by (@krsh333 and @wadehammes)
|
158 |
= 1.3.2 =
|
159 |
* CSV Injection was fixed – reported by one of our user (Javier Olmedo) CVE-2019-15092
|
160 |
= 1.3.1 =
|
232 |
= 1.0.0 =
|
233 |
* Export Import WordPress Users.
|
234 |
|
235 |
+
== Upgrade Notice ==
|
|
|
|
|
|
styles/select2.css
CHANGED
File without changes
|
styles/select2.js
CHANGED
File without changes
|
styles/wf-style.css
CHANGED
File without changes
|
temp-import.csv
CHANGED
File without changes
|
users-customers-import-export-for-wp-woocommerce.php
CHANGED
@@ -6,8 +6,8 @@
|
|
6 |
Description: Export and Import User/Customers details From and To your WordPress/WooCommerce.
|
7 |
Author: WebToffee
|
8 |
Author URI: https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/
|
9 |
-
Version: 1.3.
|
10 |
-
WC tested up to: 3.7.
|
11 |
Text Domain: users-customers-import-export-for-wp-woocommerce
|
12 |
License: GPLv3
|
13 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
@@ -36,7 +36,7 @@ if( !defined('WF_CUSTOMER_IMP_EXP_ID') )
|
|
36 |
|
37 |
if( !defined('WF_CUSTOMER_IMP_EXP_VERSION') )
|
38 |
{
|
39 |
-
define("WF_CUSTOMER_IMP_EXP_VERSION", "1.3.
|
40 |
}
|
41 |
|
42 |
|
6 |
Description: Export and Import User/Customers details From and To your WordPress/WooCommerce.
|
7 |
Author: WebToffee
|
8 |
Author URI: https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/
|
9 |
+
Version: 1.3.3
|
10 |
+
WC tested up to: 3.7.1
|
11 |
Text Domain: users-customers-import-export-for-wp-woocommerce
|
12 |
License: GPLv3
|
13 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
36 |
|
37 |
if( !defined('WF_CUSTOMER_IMP_EXP_VERSION') )
|
38 |
{
|
39 |
+
define("WF_CUSTOMER_IMP_EXP_VERSION", "1.3.3");
|
40 |
}
|
41 |
|
42 |
|