Version Description
- Marketing Content Change.
Download this release
Release Info
Developer | xadapter |
Plugin | Import Export WordPress Users and WooCommerce Customers |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- customer-import-export.php +1 -1
- includes/views/import/html-wf-import-customers.php +3 -34
- includes/views/import/market.php +93 -0
- readme.txt +10 -2
customer-import-export.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
Description: Export and Import User/Customers details From and To your WordPress/WooCommerce.
|
7 |
Author: XAdapter
|
8 |
Author URI: http://www.xadapter.com/
|
9 |
-
Version: 1.0.
|
10 |
Text Domain: wf_customer_import_export
|
11 |
*/
|
12 |
|
6 |
Description: Export and Import User/Customers details From and To your WordPress/WooCommerce.
|
7 |
Author: XAdapter
|
8 |
Author URI: http://www.xadapter.com/
|
9 |
+
Version: 1.0.4
|
10 |
Text Domain: wf_customer_import_export
|
11 |
*/
|
12 |
|
includes/views/import/html-wf-import-customers.php
CHANGED
@@ -1,37 +1,6 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
<li style='color:red;'><strong><?php _e('Your Business is precious! Go Premium!','wf_customer_import_export'); ?></strong></li>
|
5 |
-
<strong>
|
6 |
-
<?php _e('HikeForce Import Export Users Plugin Premium version helps you to seamlessly import/export Customer details into your Woocommerce Store.', 'wf_customer_import_export'); ?>
|
7 |
-
</strong><br/><br/>
|
8 |
-
<?php _e('- Export/Import <strong>WooCommerce Customer</strong> details into a CSV file.', 'wf_customer_import_export'); ?><strong><?php _e('( Basic version supports only WordPress User details )', 'wf_customer_import_export'); ?></strong><br/>
|
9 |
-
<?php _e('- Option to choose All Roles or Multiple Roles while export (Basic Supports only single role at a time).', 'wf_customer_import_export'); ?><br/>
|
10 |
-
<?php _e('- Various Filter options for exporting Customers.', 'wf_customer_import_export'); ?><br/>
|
11 |
-
<?php _e('- Map and Transform fields while Importing Customers.', 'wf_customer_import_export'); ?><br/>
|
12 |
-
<?php _e('- Change values while improting Customers using Evaluation Fields.', 'wf_customer_import_export'); ?><br/>
|
13 |
-
<?php _e('- Choice to Update or Skip existing imported Customers.', 'wf_customer_import_export'); ?><br/>
|
14 |
-
<?php _e('- Choice to Send or Skip Emails for newly imported Customers.', 'wf_customer_import_export'); ?><br/>
|
15 |
-
<?php _e('- WPML Supported. French language support Out of the Box.', 'wf_customer_import_export'); ?><br/>
|
16 |
-
<?php _e('- Import/Export file from/to a remote server via FTP in Scheduled time interval with Cron Job.', 'wf_customer_import_export'); ?><br/>
|
17 |
-
<?php _e('- Excellent Support for setting it up!', 'wf_customer_import_export'); ?><br/>
|
18 |
-
</ul>
|
19 |
-
</p>
|
20 |
-
<p>
|
21 |
-
<a href="http://www.xadapter.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-primary"><?php _e( 'Upgrade to Premium Version', 'wf_customer_import_export'); ?></a>
|
22 |
-
<a href="http://userexportimportwoodemo.hikeforce.com/wp-admin/admin.php?page=hf_wordpress_customer_im_ex" target="_blank" class="button"><?php _e( 'Live Demo', 'wf_customer_import_export'); ?></a>
|
23 |
-
<a href="http://www.xadapter.com/category/product/wordpress-users-woocommerce-customers-import-export" target="_blank" class="button"><?php _e( 'Documentation', 'wf_customer_import_export' ); ?></a>
|
24 |
-
<a href="<?php echo plugins_url( 'Sample_Users.csv', WF_CustomerImpExpCsv_FILE ); ?>" target="_blank" class="button"><?php _e('Sample User CSV', 'wf_customer_import_export'); ?></a>
|
25 |
-
</p>
|
26 |
-
</div>
|
27 |
-
<style>
|
28 |
-
.wf-banner img {
|
29 |
-
float: right;
|
30 |
-
margin-left: 1em;
|
31 |
-
padding: 15px 0
|
32 |
-
}
|
33 |
-
</style>
|
34 |
-
|
35 |
<div class="tool-box">
|
36 |
<h3 class="title"><?php _e('Import Users in CSV Format:', 'wf_customer_import_export'); ?></h3>
|
37 |
<p><?php _e('Import Users in CSV format from your computer', 'wf_customer_import_export'); ?></p>
|
1 |
+
<?php
|
2 |
+
include_once("market.php");
|
3 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
<div class="tool-box">
|
5 |
<h3 class="title"><?php _e('Import Users in CSV Format:', 'wf_customer_import_export'); ?></h3>
|
6 |
<p><?php _e('Import Users in CSV format from your computer', 'wf_customer_import_export'); ?></p>
|
includes/views/import/market.php
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<style>
|
2 |
+
.box14{
|
3 |
+
width: 30%;
|
4 |
+
margin-top:2px;
|
5 |
+
min-height: 310px;
|
6 |
+
margin-right: 10px;
|
7 |
+
padding:10px;
|
8 |
+
position:absolute;
|
9 |
+
z-index:1;
|
10 |
+
right:0px;
|
11 |
+
float:right;
|
12 |
+
background: -webkit-gradient(linear, 0% 20%, 0% 92%, from(#fff), to(#f3f3f3), color-stop(.1,#fff));
|
13 |
+
border: 1px solid #ccc;
|
14 |
+
-webkit-border-radius: 60px 5px;
|
15 |
+
-webkit-box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1) inset;
|
16 |
+
}
|
17 |
+
.box14_ribbon{
|
18 |
+
position:absolute;
|
19 |
+
top:0; right: 0;
|
20 |
+
width: 130px;
|
21 |
+
height: 40px;
|
22 |
+
background: -webkit-gradient(linear, 555% 20%, 0% 92%, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.0)), color-stop(.1,rgba(0, 0, 0, 0.2)));
|
23 |
+
border-left: 1px dashed rgba(0, 0, 0, 0.1);
|
24 |
+
border-right: 1px dashed rgba(0, 0, 0, 0.1);
|
25 |
+
-webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
|
26 |
+
-webkit-transform: rotate(6deg) skew(0,0) translate(-60%,-5px);
|
27 |
+
}
|
28 |
+
.box14 h3
|
29 |
+
{
|
30 |
+
text-align:center;
|
31 |
+
margin:2px;
|
32 |
+
}
|
33 |
+
.box14 p
|
34 |
+
{
|
35 |
+
text-align:center;
|
36 |
+
margin:2px;
|
37 |
+
border-width:1px;
|
38 |
+
border-style:solid;
|
39 |
+
padding:5px;
|
40 |
+
border-color: rgb(204, 204, 204);
|
41 |
+
}
|
42 |
+
.box14 span
|
43 |
+
{
|
44 |
+
background:#fff;
|
45 |
+
padding:5px;
|
46 |
+
display:block;
|
47 |
+
box-shadow:green 0px 3px inset;
|
48 |
+
margin-top:10px;
|
49 |
+
}
|
50 |
+
.box14 img {
|
51 |
+
width: 40%;
|
52 |
+
padding-left:30%;
|
53 |
+
margin-top: 5px;
|
54 |
+
}
|
55 |
+
.table-box-main {
|
56 |
+
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
57 |
+
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
|
58 |
+
}
|
59 |
+
|
60 |
+
.table-box-main:hover {
|
61 |
+
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
|
62 |
+
}
|
63 |
+
</style>
|
64 |
+
<div class="box14 table-box-main">
|
65 |
+
<h3>
|
66 |
+
<center><a href="https://www.xadapter.com/" target="_blank" style="text-decoration: none;color:black;" >XAdapter</a></center></h3>
|
67 |
+
<hr>
|
68 |
+
<img src="https://cdn.xadapter.com/wp-content/uploads/2016/10/4-WordPress-Users-WooCommerce-Customers-Import-Export-Plugin.jpg">
|
69 |
+
<h3>WordPress Users & WooCommerce Customers Import Export Plugin</h3>
|
70 |
+
|
71 |
+
<br /> <center><a href="http://www.xadapter.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-primary">Upgrade to Premium Version</a></center>
|
72 |
+
<span>
|
73 |
+
<ul style="list-style: disc; margin-left: 1px;">
|
74 |
+
<li style='color:red;'><strong><?php _e('Your Business is precious! Go Premium!','wf_customer_import_export'); ?></strong></li>
|
75 |
+
|
76 |
+
<li><?php _e('HikeForce Import Export Users Plugin Premium version helps you to seamlessly import/export Customer details into your Woocommerce Store.', 'wf_customer_import_export'); ?></li>
|
77 |
+
|
78 |
+
<li><?php _e('Export/Import WooCommerce Customer details into a CSV file.', 'wf_customer_import_export'); ?><strong><?php _e('( Basic version supports only WordPress User details )', 'wf_customer_import_export'); ?></strong></li>
|
79 |
+
<li><?php _e('Option to choose All Roles or Multiple Roles while export (Basic Supports only single role at a time).', 'wf_customer_import_export'); ?></li>
|
80 |
+
<li><?php _e('Various Filter options for exporting Customers.', 'wf_customer_import_export'); ?></li>
|
81 |
+
<li><?php _e('Various Filter options for exporting Customers.', 'wf_customer_import_export'); ?></li>
|
82 |
+
<li><?php _e('Map and Transform fields while Importing Customers.', 'wf_customer_import_export'); ?></li>
|
83 |
+
<li><?php _e('Change values while improting Customers using Evaluation Fields.', 'wf_customer_import_export'); ?></li>
|
84 |
+
<li><?php _e('Choice to Update or Skip existing imported Customers.', 'wf_customer_import_export'); ?></li>
|
85 |
+
<li><?php _e('Choice to Send or Skip Emails for newly imported Customers.', 'wf_customer_import_export'); ?></li>
|
86 |
+
<li><?php _e('WPML Supported. French language support Out of the Box.', 'wf_customer_import_export'); ?></li>
|
87 |
+
<li><?php _e('Import/Export file from/to a remote server via FTP in Scheduled time interval with Cron Job.', 'wf_customer_import_export'); ?></li>
|
88 |
+
<li><?php _e('Excellent Support for setting it up!', 'wf_customer_import_export'); ?></li>
|
89 |
+
</ul>
|
90 |
+
</span>
|
91 |
+
|
92 |
+
<center> <a href="https://www.xadapter.com/category/documentation/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-primary">Documentation</a> <a href="http://userexportimportwoodemo.hikeforce.com/wp-login.php?redirect_to=http%3A%2F%2Fuserexportimportwoodemo.hikeforce.com%2Fwp-admin%2Fadmin.php%3Fpage%3Dhf_wordpress_customer_im_ex&reauth=1" target="_blank" class="button button-primary">Live Demo</a> <a href="<?php echo plugins_url( 'Sample_Users.csv', WF_CustomerImpExpCsv_FILE ); ?>" target="_blank" class="button button-primary"><?php _e('Sample User CSV', 'wf_customer_import_export'); ?></a></center>
|
93 |
+
</div>
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
=== WordPress Users & WooCommerce Customers Import Export(BASIC) ===
|
2 |
Contributors: xadapter, niwf, mujeebur
|
3 |
Tags: CSV, Export, Import, WooCommerce Customers, Wordpress Users
|
4 |
Requires at least: 3.0.1
|
5 |
Tested up to: 4.8
|
6 |
-
Stable tag: 1.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -77,6 +77,10 @@ Yes. You can import or export multiple user roles along with other basic user de
|
|
77 |
3. Premium export Screen
|
78 |
|
79 |
== Changelog ==
|
|
|
|
|
|
|
|
|
80 |
= 1.0.3 =
|
81 |
* Minor content updates.
|
82 |
= 1.0.2 =
|
@@ -87,6 +91,10 @@ Yes. You can import or export multiple user roles along with other basic user de
|
|
87 |
* Import /Export WordPress Users.
|
88 |
|
89 |
== Upgrade Notice ==
|
|
|
|
|
|
|
|
|
90 |
= 1.0.3 =
|
91 |
* Minor content updates.
|
92 |
= 1.0.2 =
|
1 |
+
=== WordPress Users & WooCommerce Customers Import Export(BASIC) ===
|
2 |
Contributors: xadapter, niwf, mujeebur
|
3 |
Tags: CSV, Export, Import, WooCommerce Customers, Wordpress Users
|
4 |
Requires at least: 3.0.1
|
5 |
Tested up to: 4.8
|
6 |
+
Stable tag: 1.0.4
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
77 |
3. Premium export Screen
|
78 |
|
79 |
== Changelog ==
|
80 |
+
|
81 |
+
= 1.0.4 =
|
82 |
+
* Marketing Content Change.
|
83 |
+
|
84 |
= 1.0.3 =
|
85 |
* Minor content updates.
|
86 |
= 1.0.2 =
|
91 |
* Import /Export WordPress Users.
|
92 |
|
93 |
== Upgrade Notice ==
|
94 |
+
|
95 |
+
= 1.0.4 =
|
96 |
+
* Marketing Content Change.
|
97 |
+
|
98 |
= 1.0.3 =
|
99 |
* Minor content updates.
|
100 |
= 1.0.2 =
|