Version Description
- Tested OK with WC 3.8 and WP 5.2.4
- Content Update.
- Improvment:- Option to select all and deselect all columns on export page.
Download this release
Release Info
Developer | webtoffee |
Plugin | Import Export WordPress Users and WooCommerce Customers |
Version | 1.3.4 |
Comparing to | |
See all releases |
Code changes from version 1.3.3 to 1.3.4
- includes/exporter/data/data-wf-post-columns.php +0 -0
- includes/importer/class-wf-csv-parser.php +0 -0
- includes/importer/class-wf-customerimpexpcsv-customer-import.php +0 -0
- includes/importer/data/data-wf-reserved-fields-pair.php +0 -0
- includes/views/export/html-wf-export-customers.php +28 -1
- includes/views/export/market.php +8 -1
- includes/views/market.php +7 -0
- readme.txt +13 -3
- users-customers-import-export-for-wp-woocommerce.php +2 -2
includes/exporter/data/data-wf-post-columns.php
CHANGED
File without changes
|
includes/importer/class-wf-csv-parser.php
CHANGED
File without changes
|
includes/importer/class-wf-customerimpexpcsv-customer-import.php
CHANGED
File without changes
|
includes/importer/data/data-wf-reserved-fields-pair.php
CHANGED
File without changes
|
includes/views/export/html-wf-export-customers.php
CHANGED
@@ -52,6 +52,14 @@
|
|
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>
|
@@ -70,6 +78,25 @@
|
|
70 |
</form>
|
71 |
</div>
|
72 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
<?php if(!class_exists('WooCommerce')){ ?>
|
74 |
<script>
|
75 |
jQuery(document).ready(function () {
|
@@ -77,4 +104,4 @@
|
|
77 |
|
78 |
});
|
79 |
</script>
|
80 |
-
<?php } ?>
|
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 |
+
<!-- select all boxes -->
|
56 |
+
<tr>
|
57 |
+
<td style="padding: 10px;">
|
58 |
+
<a href="#" id="pselectall" onclick="return false;" ><?php _e('Select all', 'users-customers-import-export-for-wp-woocommerce'); ?></a> /
|
59 |
+
<a href="#" id="punselectall" onclick="return false;"><?php _e('Unselect all', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
|
60 |
+
</td>
|
61 |
+
</tr>
|
62 |
+
|
63 |
<?php foreach ($post_columns as $pkey => $pcolumn) { ?>
|
64 |
<tr>
|
65 |
<td>
|
78 |
</form>
|
79 |
</div>
|
80 |
|
81 |
+
<script>
|
82 |
+
jQuery(document).ready(function (a) {
|
83 |
+
"use strict";
|
84 |
+
// Listen for click on toggle checkbox
|
85 |
+
jQuery('#pselectall').live("click", function () {
|
86 |
+
// Iterate each checkbox
|
87 |
+
jQuery(':checkbox').each(function () {
|
88 |
+
this.checked = true;
|
89 |
+
});
|
90 |
+
});
|
91 |
+
jQuery('#punselectall').live("click", function () {
|
92 |
+
// Iterate each checkbox
|
93 |
+
jQuery(':checkbox').each(function () {
|
94 |
+
this.checked = false;
|
95 |
+
});
|
96 |
+
});
|
97 |
+
});
|
98 |
+
</script>
|
99 |
+
|
100 |
<?php if(!class_exists('WooCommerce')){ ?>
|
101 |
<script>
|
102 |
jQuery(document).ready(function () {
|
104 |
|
105 |
});
|
106 |
</script>
|
107 |
+
<?php } ?>
|
includes/views/export/market.php
CHANGED
@@ -102,7 +102,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
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 |
-
|
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 |
|
@@ -116,6 +116,13 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
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">
|
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 |
|
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 |
+
<li><?php _e('BuddyPress Plugin compatible,', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
120 |
+
<li><?php _e('Ultimate Member – User Profile & Membership Plugin compatible,', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
121 |
+
<li><?php _e('Ultimate Membership Pro Plugin compatible,', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
122 |
+
<li><?php _e('Better Notifications for WP Plugin compatible,', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
123 |
+
<li><?php _e('Advanced Custom Fields (ACF) Plugin compatible,', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
124 |
+
|
125 |
+
|
126 |
</ul>
|
127 |
</span>
|
128 |
<center style="padding-bottom: 20px">
|
includes/views/market.php
CHANGED
@@ -115,6 +115,13 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
115 |
<li><?php _e('Choice to Send or Skip Emails for newly imported Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
116 |
<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>
|
117 |
<li><?php _e('Excellent Support for setting it up!', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
</ul>
|
119 |
</span>
|
120 |
<center style="padding-bottom: 20px">
|
115 |
<li><?php _e('Choice to Send or Skip Emails for newly imported Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
116 |
<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>
|
117 |
<li><?php _e('Excellent Support for setting it up!', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
118 |
+
<li><?php _e('BuddyPress Plugin compatible,', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
119 |
+
<li><?php _e('Ultimate Member – User Profile & Membership Plugin compatible,', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
120 |
+
<li><?php _e('Ultimate Membership Pro Plugin compatible,', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
121 |
+
<li><?php _e('Better Notifications for WP Plugin compatible,', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
122 |
+
<li><?php _e('Advanced Custom Fields (ACF) Plugin compatible,', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
|
123 |
+
|
124 |
+
|
125 |
</ul>
|
126 |
</span>
|
127 |
<center style="padding-bottom: 20px">
|
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.
|
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.
|
@@ -47,6 +47,8 @@ Import Export WordPress Users & WooCommerce Customers
|
|
47 |
✅ Choice to Send or Skip Emails for newly imported Customers.
|
48 |
✅ WPML Supported. French language support Out of the Box.
|
49 |
✅ Export Import users to/from a remote server via FTP in Scheduled time interval with Cron Job.
|
|
|
|
|
50 |
✅ Excellent Support for setting it up!
|
51 |
|
52 |
|
@@ -133,6 +135,10 @@ Yes. In premium version the exported csv will have all customer emails. woocomme
|
|
133 |
|
134 |
Yes. This plugin will export users with passwords
|
135 |
|
|
|
|
|
|
|
|
|
136 |
= Does this plugin support woocommerce customer order csv export? =
|
137 |
|
138 |
No. You may want to use https://wordpress.org/plugins/order-import-export-for-woocommerce/ for this
|
@@ -152,6 +158,10 @@ By default, admin and store manager are given access to export users. Please vis
|
|
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)
|
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.4
|
7 |
+
Stable tag: 1.3.4
|
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.8
|
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.
|
47 |
✅ Choice to Send or Skip Emails for newly imported Customers.
|
48 |
✅ WPML Supported. French language support Out of the Box.
|
49 |
✅ Export Import users to/from a remote server via FTP in Scheduled time interval with Cron Job.
|
50 |
+
✅ Third party plugin customization support.</li>
|
51 |
+
✅ Compatible with BuddyPress, Ultimate Member, Ultimate Membership Pro, Better Notifications for WP, Advanced Custom Fields (ACF) etc.</li>
|
52 |
✅ Excellent Support for setting it up!
|
53 |
|
54 |
|
135 |
|
136 |
Yes. This plugin will export users with passwords
|
137 |
|
138 |
+
= Does this import users with their passwords?
|
139 |
+
|
140 |
+
Yes. This plugin will import users with password, so users can use same old password in imported site as well
|
141 |
+
|
142 |
= Does this plugin support woocommerce customer order csv export? =
|
143 |
|
144 |
No. You may want to use https://wordpress.org/plugins/order-import-export-for-woocommerce/ for this
|
158 |
|
159 |
== Changelog ==
|
160 |
|
161 |
+
= 1.3.4 =
|
162 |
+
* Tested OK with WC 3.8 and WP 5.2.4
|
163 |
+
* Content Update.
|
164 |
+
* Improvment:- Option to select all and deselect all columns on export page.
|
165 |
= 1.3.3 =
|
166 |
* Tested OK with WC 3.7.1 and WP 5.2.3
|
167 |
* Biographical Info – reported by (@krsh333 and @wadehammes)
|
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.
|
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
|
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.4
|
10 |
+
WC tested up to: 3.8
|
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
|