Import Export WordPress Users and WooCommerce Customers - Version 1.2.3

Version Description

  • Tested OK with WP 5.1.1 and WC 3.5.6
  • Minor UI changes.
Download this release

Release Info

Developer webtoffee
Plugin Icon 128x128 Import Export WordPress Users and WooCommerce Customers
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2 to 1.2.3

Sample_Users.csv CHANGED
File without changes
includes/class-wf-customerimpexpcsv-admin-screen.php CHANGED
@@ -35,15 +35,19 @@ class WF_CustomerImpExpCsv_Admin_Screen {
35
  * Admin Scripts
36
  */
37
  public function admin_scripts() {
38
- global $wp_scripts;
39
- if (function_exists('WC')) {
40
- wp_enqueue_style('woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css');
41
- wp_enqueue_script('wc-enhanced-select');
42
- } else {
43
- wp_enqueue_style('wt-user-csv-importer-select2-css', plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE)) . '/styles/select2.css', basename(__FILE__)), '', '4.0.6', '');
44
- wp_enqueue_script('wt-user-csv-importer-select2-js', plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE)) . '/styles/select2.js', basename(__FILE__)), array(), '4.0.6', true);
 
 
 
 
 
45
  }
46
- wp_enqueue_style('woocommerce-user-csv-importer', plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE)) . '/styles/wf-style.css', basename(__FILE__)), '', '1.0.0', 'screen');
47
  }
48
 
49
  /**
35
  * Admin Scripts
36
  */
37
  public function admin_scripts() {
38
+ $screen = get_current_screen();
39
+ $allowed_creen_id = array('users_page_hf_wordpress_customer_im_ex');
40
+ if (in_array($screen->id, $allowed_creen_id) || (isset($_GET['import']) && $_GET['import'] == 'wordpress_hf_user_csv')) {
41
+ global $wp_scripts;
42
+ if (function_exists('WC')) {
43
+ wp_enqueue_style('woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css');
44
+ wp_enqueue_script('wc-enhanced-select');
45
+ } else {
46
+ wp_enqueue_style('wt-user-csv-importer-select2-css', plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE)) . '/styles/select2.css', basename(__FILE__)), '', '4.0.6', '');
47
+ wp_enqueue_script('wt-user-csv-importer-select2-js', plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE)) . '/styles/select2.js', basename(__FILE__)), array(), '4.0.6', true);
48
+ }
49
+ wp_enqueue_style('woocommerce-user-csv-importer', plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE)) . '/styles/wf-style.css', basename(__FILE__)), '', '1.0.0', 'screen');
50
  }
 
51
  }
52
 
53
  /**
includes/importer/class-wf-customerimpexpcsv-customer-import.php CHANGED
@@ -797,7 +797,8 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
797
  // Display import page title
798
  public function header() {
799
  echo '<div><div class="icon32" id="icon-woocommerce-importer"><br></div>';
800
- echo '<h2>' . ( empty($_GET['merge']) ? __('Import', 'users-customers-import-export-for-wp-woocommerce') : __('Merge Users', 'users-customers-import-export-for-wp-woocommerce') ) . '</h2>';
 
801
  }
802
 
803
  // Close div.wrap
797
  // Display import page title
798
  public function header() {
799
  echo '<div><div class="icon32" id="icon-woocommerce-importer"><br></div>';
800
+ $tab = "import";
801
+ include_once(plugin_dir_path(WF_CustomerImpExpCsv_FILE).'includes/views/html-wf-common-header.php');
802
  }
803
 
804
  // Close div.wrap
includes/importer/views/html-wf-import-greeting.php CHANGED
@@ -1,16 +1,10 @@
1
-
2
- <div class=" woocommerce">
3
  <div class="icon32" id="icon-woocommerce-importer"><br></div>
4
- <h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
5
- <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex') ?>" class="nav-tab "><?php _e('User/Customer Export', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
6
- <a href="<?php echo admin_url('admin.php?import=wordpress_hf_user_csv') ?>" class="nav-tab nav-tab-active"><?php _e('User/Customer Import', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
7
- <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex&tab=help'); ?>" class="nav-tab"><?php _e('Help', 'wf_csv_import_export'); ?></a>
8
- <a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="nav-tab nav-tab-premium"><?php _e('Upgrade to Premium for More Features', 'wf_csv_import_export'); ?></a>
9
- </h2>
10
  <?php
11
- include_once("market.php");
 
 
12
  ?>
13
-
14
  </div>
15
  <div class="tool-box bg-white p-20p pipe-view">
16
  <h3 class="title"><?php _e('Import Users in CSV Format:', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
1
+ <div class="woocommerce">
 
2
  <div class="icon32" id="icon-woocommerce-importer"><br></div>
 
 
 
 
 
 
3
  <?php
4
+ $tab = "import";
5
+ include_once(plugin_dir_path(WF_CustomerImpExpCsv_FILE).'includes/views/html-wf-common-header.php');
6
+ include_once(plugin_dir_path(WF_CustomerImpExpCsv_FILE).'includes/views/market.php');
7
  ?>
 
8
  </div>
9
  <div class="tool-box bg-white p-20p pipe-view">
10
  <h3 class="title"><?php _e('Import Users in CSV Format:', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
includes/importer/views/market.php CHANGED
File without changes
includes/views/export/html-wf-export-customers.php CHANGED
@@ -1,5 +1,3 @@
1
-
2
-
3
  <div class="tool-box bg-white p-20p pipe-view">
4
  <h3 class="title"><?php _e('Export Users in CSV Format:', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
5
  <p><?php _e('Export and download your Users in CSV format. This file can be used to import users back into your Website.', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
@@ -42,12 +40,7 @@
42
  <input type="text" name="limit" id="v_limit" placeholder="<?php _e('Unlimited', 'users-customers-import-export-for-wp-woocommerce'); ?>" class="input-text" />
43
  <p style="font-size: 12px"><?php _e('The number of users to return.', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
44
  </td>
45
- </tr>
46
-
47
-
48
-
49
-
50
-
51
  <tr>
52
  <th>
53
  <label for="v_columns"><?php _e('Columns', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
@@ -59,30 +52,19 @@
59
  <th style="text-align: left;">
60
  <label for="v_columns_name"><?php _e('Column Name', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
61
  </th>
62
- <?php
63
- ?>
64
- <?php foreach ($post_columns as $pkey => $pcolumn) {
65
-
66
- ?>
67
- <tr>
68
- <td>
69
- <input name= "columns[<?php echo $pkey; ?>]" type="checkbox" value="<?php echo $pkey; ?>" checked>
70
- <label for="columns[<?php echo $pkey; ?>]"><?php _e($pcolumn, 'users-customers-import-export-for-wp-woocommerce'); ?></label>
71
- </td>
72
- <td>
73
- <input type="text" name="columns_name[<?php echo $pkey; ?>]" value="<?php echo $pkey; ?>" class="input-text" />
74
- </td>
75
- </tr>
76
- <?php } ?>
77
-
78
  </table><br/>
79
  </tr>
80
-
81
-
82
-
83
-
84
-
85
-
86
  </table>
87
  <p class="submit"><input type="submit" class="button button-primary" value="<?php _e('Export Users', 'users-customers-import-export-for-wp-woocommerce'); ?>" /></p>
88
  </form>
 
 
1
  <div class="tool-box bg-white p-20p pipe-view">
2
  <h3 class="title"><?php _e('Export Users in CSV Format:', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
3
  <p><?php _e('Export and download your Users in CSV format. This file can be used to import users back into your Website.', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
40
  <input type="text" name="limit" id="v_limit" placeholder="<?php _e('Unlimited', 'users-customers-import-export-for-wp-woocommerce'); ?>" class="input-text" />
41
  <p style="font-size: 12px"><?php _e('The number of users to return.', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
42
  </td>
43
+ </tr>
 
 
 
 
 
44
  <tr>
45
  <th>
46
  <label for="v_columns"><?php _e('Columns', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
52
  <th style="text-align: left;">
53
  <label for="v_columns_name"><?php _e('Column Name', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
54
  </th>
55
+ <?php foreach ($post_columns as $pkey => $pcolumn) { ?>
56
+ <tr>
57
+ <td>
58
+ <input name= "columns[<?php echo $pkey; ?>]" type="checkbox" value="<?php echo $pkey; ?>" checked>
59
+ <label for="columns[<?php echo $pkey; ?>]"><?php _e($pcolumn, 'users-customers-import-export-for-wp-woocommerce'); ?></label>
60
+ </td>
61
+ <td>
62
+ <input type="text" name="columns_name[<?php echo $pkey; ?>]" value="<?php echo $pkey; ?>" class="input-text" />
63
+ </td>
64
+ </tr>
65
+ <?php } ?>
 
 
 
 
 
66
  </table><br/>
67
  </tr>
 
 
 
 
 
 
68
  </table>
69
  <p class="submit"><input type="submit" class="button button-primary" value="<?php _e('Export Users', 'users-customers-import-export-for-wp-woocommerce'); ?>" /></p>
70
  </form>
includes/views/export/market.php CHANGED
File without changes
includes/views/html-wf-admin-screen.php CHANGED
@@ -1,16 +1,11 @@
1
  <div class="woocommerce">
2
  <div class="icon32" id="icon-woocommerce-importer"><br></div>
3
- <h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
4
- <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex') ?>" class="nav-tab <?php echo ($tab == 'export') ? 'nav-tab-active' : ''; ?>"><?php _e('User/Customer Export', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
5
- <a href="<?php echo admin_url('admin.php?import=wordpress_hf_user_csv') ?>" class="nav-tab <?php echo ($tab == 'import') ? 'nav-tab-active' : ''; ?>"><?php _e('User/Customer Import', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
6
- <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex&tab=help'); ?>" class="nav-tab <?php echo ('help' == $tab) ? 'nav-tab-active' : ''; ?>"><?php _e('Help', 'wf_csv_import_export'); ?></a>
7
- <a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="nav-tab nav-tab-premium"><?php _e('Upgrade to Premium for More Features', 'wf_csv_import_export'); ?></a>
8
- </h2>
9
  <?php
 
10
  switch ($tab) {
11
  case "export" :
12
  $this->admin_export_page();
13
- include_once("export/market.php");
14
  break;
15
  case "help" :
16
  $this->admin_help_page();
1
  <div class="woocommerce">
2
  <div class="icon32" id="icon-woocommerce-importer"><br></div>
 
 
 
 
 
 
3
  <?php
4
+ include_once('html-wf-common-header.php');
5
  switch ($tab) {
6
  case "export" :
7
  $this->admin_export_page();
8
+ include_once("market.php");
9
  break;
10
  case "help" :
11
  $this->admin_help_page();
includes/views/html-wf-common-header.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
2
+ <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex') ?>" class="nav-tab <?php echo ($tab == 'export') ? 'nav-tab-active' : ''; ?>"><?php _e('User/Customer Export', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
3
+ <a href="<?php echo admin_url('admin.php?import=wordpress_hf_user_csv') ?>" class="nav-tab <?php echo ($tab == 'import') ? 'nav-tab-active' : ''; ?>"><?php _e('User/Customer Import', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
4
+ <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex&tab=help'); ?>" class="nav-tab <?php echo ('help' == $tab) ? 'nav-tab-active' : ''; ?>"><?php _e('Help', 'wf_csv_import_export'); ?></a>
5
+ <a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="nav-tab nav-tab-premium"><?php _e('Upgrade to Premium for More Features', 'wf_csv_import_export'); ?></a>
6
+ </h2>
7
+
includes/views/html-wf-help-guide.php CHANGED
@@ -51,6 +51,6 @@ if ( ! defined( 'ABSPATH' ) ) {
51
  </div>
52
  </div>
53
  </div>
54
- <?php include_once("export/market.php"); ?>
55
  <div class="clearfix"></div>
56
  </div>
51
  </div>
52
  </div>
53
  </div>
54
+ <?php include_once("market.php"); ?>
55
  <div class="clearfix"></div>
56
  </div>
includes/views/import/html-wf-import-customers.php CHANGED
File without changes
includes/views/market.php ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+ ?>
6
+
7
+ <style>
8
+ .wf_customer_import_export.market-box{
9
+ width:30%;
10
+ float: right;
11
+ }
12
+
13
+ .wf_customer_import_export .uipe-premium-features{
14
+ background: #fff;
15
+ padding: 5px;
16
+ /* margin-bottom: 23px;*/
17
+ margin-top: 5px;
18
+ }
19
+ .wf_customer_import_export .uipe-premium-features ul {
20
+ padding-left: 20px;
21
+ padding-right: 20px;
22
+ }
23
+ .wf_customer_import_export .uipe-premium-features .ticked-list li {
24
+ margin-bottom: 15px;
25
+ padding-left: 15px;
26
+ }
27
+ .wf_customer_import_export .uipe-premium-features .ticked-list li:before
28
+ {
29
+ font-family: dashicons;
30
+ text-decoration: inherit;
31
+ font-weight: 400;
32
+ font-style: normal;
33
+ vertical-align: top;
34
+ text-align: center;
35
+ content: "\f147";
36
+ margin-right: 10px;
37
+ margin-left: -25px;
38
+ font-size: 16px;
39
+ color: #3085bb;
40
+ }
41
+ .wf_customer_import_export .uipe-premium-features .button {
42
+ /*margin-bottom: 20px;*/
43
+ }
44
+ .wf_customer_import_export .uipe-premium-features .button-go-pro {
45
+ box-shadow: none;
46
+ border: 0;
47
+ text-shadow: none;
48
+ padding: 10px 15px;
49
+ height: auto;
50
+ font-size: 16px;
51
+ border-radius: 4px;
52
+ font-weight: 400;
53
+ background: #00cb95;
54
+ /* margin-top: 20px;*/
55
+ }
56
+ .wf_customer_import_export .uipe-premium-features .button-go-pro:hover,
57
+ .wf_customer_import_export .uipe-premium-features .button-go-pro:focus,
58
+ .wf_customer_import_export .uipe-premium-features .button-go-pro:active {
59
+ background: #00a378;
60
+ }
61
+ .wf_customer_import_export .uipe-premium-features .button-doc-demo {
62
+ border: 0;
63
+ background: #d8d8dc;
64
+ box-shadow: none;
65
+ padding: 10px 15px;
66
+ font-size: 15px;
67
+ height: auto;
68
+ margin-left: 10px;
69
+ margin-right: 10px;
70
+ margin-top: 10px;
71
+ }
72
+ .wf_customer_import_export .uipe-premium-features .button-doc-demo:hover,
73
+ .wf_customer_import_export .uipe-premium-features .button-doc-demo:focus,
74
+ .wf_customer_import_export .uipe-premium-features .button-doc-demo:active {
75
+ background: #dfdfe4;
76
+ }
77
+ .wf_customer_import_export .xa-uipe-rating-link{color:#ffc600;}
78
+
79
+ .wf_customer_import_export .uipe-review-widget{
80
+ background: #fff;
81
+ padding: 5px;
82
+ margin-bottom: 23px;
83
+ margin-top: 5px;
84
+ }
85
+ .wf_customer_import_export .uipe-review-widget p{
86
+ margin-right:5px;
87
+ margin-left:5px;
88
+ }
89
+ </style>
90
+ <div class="wf_customer_import_export market-box table-box-main">
91
+ <div class="uipe-review-widget">
92
+ <?php
93
+ echo sprintf(__('<div class=""><p><i>If you like the plugin please leave us a %1$s review!</i><p></div>', 'users-customers-import-export-for-wp-woocommerce'), '<a href="https://wordpress.org/support/plugin/users-customers-import-export-for-wp-woocommerce/reviews?rate=5#new-post" target="_blank" class="xa-uipe-rating-link" data-reviewed="' . esc_attr__('Thanks for the review.', 'users-customers-import-export-for-wp-woocommerce') . '">&#9733;&#9733;&#9733;&#9733;&#9733;</a>');
94
+ ?>
95
+ </div>
96
+
97
+ <div class="uipe-premium-features">
98
+ <ul style="font-weight: bold; color:#666; list-style: none; background:#f8f8f8; padding:20px; margin:20px 15px; font-size: 15px; line-height: 26px;">
99
+ <li style=""><?php echo __('30 Day Money Back Guarantee','users-customers-import-export-for-wp-woocommerce'); ?></li>
100
+ <li style=""><?php echo __('Fast and Superior Support','users-customers-import-export-for-wp-woocommerce'); ?></li>
101
+ <li style="">
102
+ <a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-primary button-go-pro"><?php _e('Upgrade to Premium', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
103
+ </li>
104
+ </ul>
105
+ <span>
106
+ <ul class="ticked-list">
107
+ <li style='color:red;'><strong><?php _e('Your Business is precious! Go Premium!','users-customers-import-export-for-wp-woocommerce'); ?></strong></li>
108
+
109
+ <li><?php _e('WebToffee Import Export Users Plugin Premium version helps you to seamlessly import/export Customer details into your Woocommerce Store.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
110
+
111
+ <li><?php _e('Export/Import WooCommerce Customer details into a CSV file.', 'users-customers-import-export-for-wp-woocommerce'); ?><strong><?php _e('( Basic version supports only WordPress User details )', 'users-customers-import-export-for-wp-woocommerce'); ?></strong></li>
112
+ <li><?php _e('Various Filter options for exporting Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
113
+ <li><?php _e('Map and Transform fields while Importing Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
114
+ <li><?php _e('Change values while importing Customers using Evaluation Fields.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
115
+ <li><?php _e('Choice to Update or Skip existing imported Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
116
+ <li><?php _e('Choice to Send or Skip Emails for newly imported Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
117
+ <li><?php _e('Import/Export file from/to a remote server via FTP in Scheduled time interval with Cron Job.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
118
+ <li><?php _e('Excellent Support for setting it up!', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
119
+ </ul>
120
+ </span>
121
+ <center style="padding-bottom: 20px">
122
+
123
+ <a href="https://www.webtoffee.com/category/documentation/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-doc-demo"><?php _e('Documentation', 'users-customers-import-export-for-wp-woocommerce'); ?></a></center>
124
+ </div>
125
+
126
+ </div>
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
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.0.3
7
- Stable tag: 1.2.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.5.3
23
 
24
  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 deatils.
25
 
@@ -148,6 +148,9 @@ No. You may want to use https://wordpress.org/plugins/order-import-export-for-wo
148
 
149
  == Changelog ==
150
 
 
 
 
151
  = 1.2.2 =
152
  * Tested OK with WP 5.0.3 and WC 3.5.3
153
  * Bug Fix: User cannot import without email.
@@ -205,7 +208,6 @@ No. You may want to use https://wordpress.org/plugins/order-import-export-for-wo
205
 
206
  == Upgrade Notice ==
207
 
208
- = 1.2.2 =
209
- * Tested OK with WP 5.0.3 and WC 3.5.3
210
- * Translation added German and French.
211
- * Fix: User cannot import without email.
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.1.1
7
+ Stable tag: 1.2.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.5.6
23
 
24
  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 deatils.
25
 
148
 
149
  == Changelog ==
150
 
151
+ = 1.2.3 =
152
+ * Tested OK with WP 5.1.1 and WC 3.5.6
153
+ * Minor UI changes.
154
  = 1.2.2 =
155
  * Tested OK with WP 5.0.3 and WC 3.5.3
156
  * Bug Fix: User cannot import without email.
208
 
209
  == Upgrade Notice ==
210
 
211
+ = 1.2.3 =
212
+ * Tested OK with WP 5.1.1 and WC 3.5.6
213
+ * Minor UI changes.
 
styles/select2.css CHANGED
File without changes
styles/wf-style.css CHANGED
File without changes
users-customers-import-export-for-wp-woocommerce.php CHANGED
@@ -6,15 +6,13 @@
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.2.2
10
- WC tested up to: 3.5.3
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
14
  */
15
 
16
-
17
-
18
  if (!defined('ABSPATH') || !is_admin()) {
19
  return;
20
  }
@@ -38,7 +36,7 @@ if( !defined('WF_CUSTOMER_IMP_EXP_ID') )
38
 
39
  if( !defined('WF_CUSTOMER_IMP_EXP_VERSION') )
40
  {
41
- define("WF_CUSTOMER_IMP_EXP_VERSION", "1.2.2");
42
  }
43
 
44
 
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.2.3
10
+ WC tested up to: 3.5.6
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
14
  */
15
 
 
 
16
  if (!defined('ABSPATH') || !is_admin()) {
17
  return;
18
  }
36
 
37
  if( !defined('WF_CUSTOMER_IMP_EXP_VERSION') )
38
  {
39
+ define("WF_CUSTOMER_IMP_EXP_VERSION", "1.2.3");
40
  }
41
 
42