Import Export WordPress Users and WooCommerce Customers - Version 1.3.3

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 Icon 128x128 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

Files changed (44) hide show
  1. Sample_Users.csv +0 -0
  2. images/calendar.png +0 -0
  3. images/csv.png +0 -0
  4. images/documentation.png +0 -0
  5. images/setup.png +0 -0
  6. images/storefrog.png +0 -0
  7. images/support.png +0 -0
  8. images/video.png +0 -0
  9. images/wf-ajax-loader.gif +0 -0
  10. images/wf-failed.png +0 -0
  11. images/wf-import.png +0 -0
  12. images/wf-notice.png +0 -0
  13. images/wf-success.png +0 -0
  14. includes/class-wf-customerimpexpcsv-admin-screen.php +0 -0
  15. includes/class-wf-customerimpexpcsv-ajax-handler.php +0 -0
  16. includes/class-wt-userimport-uninstall-feedback.php +0 -0
  17. includes/exporter/class-wf-customerimpexpcsv-exporter.php +0 -0
  18. includes/exporter/data/data-wf-post-columns.php +1 -0
  19. includes/importer/class-wf-csv-parser.php +1 -0
  20. includes/importer/class-wf-customerimpexpcsv-customer-import.php +3 -1
  21. includes/importer/class-wf-customerimpexpcsv-importer.php +0 -0
  22. includes/importer/data/data-wf-reserved-fields-pair.php +1 -1
  23. includes/importer/views/html-wf-import-greeting.php +0 -0
  24. includes/importer/views/html-wf-import-options.php +0 -0
  25. includes/importer/views/market.php +0 -0
  26. includes/settings/class-wf-customerimpexpcsv-settings.php +0 -0
  27. includes/views/export/html-wf-export-customers.php +0 -0
  28. includes/views/export/market.php +0 -0
  29. includes/views/html-wf-admin-screen.php +0 -0
  30. includes/views/html-wf-common-header.php +0 -0
  31. includes/views/html-wf-help-guide.php +0 -0
  32. includes/views/import/html-wf-import-customers.php +0 -0
  33. includes/views/market.php +0 -0
  34. lang/users-customers-import-export-for-wp-woocommerce-de_DE.mo +0 -0
  35. lang/users-customers-import-export-for-wp-woocommerce-de_DE.po +0 -0
  36. lang/users-customers-import-export-for-wp-woocommerce-fr_FR.mo +0 -0
  37. lang/users-customers-import-export-for-wp-woocommerce-fr_FR.po +0 -0
  38. license.txt +0 -0
  39. readme.txt +7 -7
  40. styles/select2.css +0 -0
  41. styles/select2.js +0 -0
  42. styles/wf-style.css +0 -0
  43. temp-import.csv +0 -0
  44. 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.2
7
- Stable tag: 1.3.2
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
  &#128312; Users Export - Export Users to CSV file.</li>
21
  &#128312; Users import - Import Users from CSV format to WordPress/WooCommerce Store.
22
- &#128312; Tested OK with WooCommerce 3.7.0
23
  &#128312; 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
  &#128312; Users Export - Export Users to CSV file.</li>
21
  &#128312; Users import - Import Users from CSV format to WordPress/WooCommerce Store.
22
+ &#128312; Tested OK with WooCommerce 3.7.1
23
  &#128312; 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.2
10
- WC tested up to: 3.7.0
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.2");
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