Version Description
2022-10-25 = * WooCommerce 7.0 Tested OK. * Enhancement: Set Min and Max limit for import and export default batch count in General setting page.
Download this release
Release Info
Developer | webtoffee |
Plugin | Import Export WordPress Users and WooCommerce Customers |
Version | 2.3.5 |
Comparing to | |
See all releases |
Code changes from version 2.3.4 to 2.3.5
- admin/class-wt-import-export-for-woo-admin.php +7 -0
- admin/css/wt-import-export-for-woo-admin.css +274 -12
- admin/modules/export/assets/js/main.js +7 -1
- admin/modules/export/export.php +2 -1
- admin/modules/export/views/main.php +7 -15
- admin/modules/import/assets/js/main.js +13 -5
- admin/modules/import/import.php +3 -2
- admin/modules/import/views/main.php +8 -3
- admin/views/market.php +60 -11
- admin/views/market_front.php +79 -0
- includes/class-wt-import-export-for-woo.php +1 -1
- readme.txt +8 -6
- users-customers-import-export-for-wp-woocommerce.php +3 -3
admin/class-wt-import-export-for-woo-admin.php
CHANGED
@@ -250,6 +250,7 @@ class Wt_Import_Export_For_Woo_Admin_Basic {
|
|
250 |
}
|
251 |
}
|
252 |
}
|
|
|
253 |
if(function_exists('remove_submenu_page')){
|
254 |
//remove_submenu_page(WT_PIEW_POST_TYPE, WT_PIEW_POST_TYPE);
|
255 |
}
|
@@ -271,6 +272,12 @@ class Wt_Import_Export_For_Woo_Admin_Basic {
|
|
271 |
include(plugin_dir_path( __FILE__ ).'partials/wt-import-export-for-woo-admin-display.php');
|
272 |
}
|
273 |
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
/**
|
275 |
* Save admin settings and module settings ajax hook
|
276 |
*/
|
250 |
}
|
251 |
}
|
252 |
}
|
253 |
+
add_submenu_page( $parent_menu_key, esc_html__('Pro upgrade'), '<span class="wt-go-premium">' . esc_html__('Pro upgrade') . '</span>', 'import', $parent_menu_key . '-premium', array( $this, 'admin_upgrade_premium_settings' ) );
|
254 |
if(function_exists('remove_submenu_page')){
|
255 |
//remove_submenu_page(WT_PIEW_POST_TYPE, WT_PIEW_POST_TYPE);
|
256 |
}
|
272 |
include(plugin_dir_path( __FILE__ ).'partials/wt-import-export-for-woo-admin-display.php');
|
273 |
}
|
274 |
|
275 |
+
public function admin_upgrade_premium_settings()
|
276 |
+
{
|
277 |
+
wp_safe_redirect(admin_url('admin.php?page=wt_import_export_for_woo_basic#wt-pro-upgrade'));
|
278 |
+
exit();
|
279 |
+
}
|
280 |
+
|
281 |
/**
|
282 |
* Save admin settings and module settings ajax hook
|
283 |
*/
|
admin/css/wt-import-export-for-woo-admin.css
CHANGED
@@ -153,7 +153,7 @@
|
|
153 |
.wt-iew_conditional_help_text{ display:none;}
|
154 |
.wt-iew-form-table tr th:first-child{ width:40% !important; padding:10px 15px 10px 0; vertical-align:top; }
|
155 |
.wt-iew-form-table tr th:first-child label{ margin-top:5px; display:inline-block; }
|
156 |
-
.wt-iew-form-table tr td:nth-child(2){ width:
|
157 |
.wt-iew-form-table tr td:nth-child(3){ width:35%; }
|
158 |
.wt_form_radio_block, .wt_form_checkbox_block{ display:inline-block; margin-top:8px; }
|
159 |
.wt-iew-tab-container .wp-list-table thead th{ font-weight:bold; }
|
@@ -166,7 +166,7 @@
|
|
166 |
font-size: 18px;
|
167 |
width: 20px;
|
168 |
height: 20px;
|
169 |
-
color: gray;
|
170 |
position: absolute;
|
171 |
top: 10px;
|
172 |
right: 10px;
|
@@ -223,7 +223,6 @@ span.wt_iew_mapping_field_val::after {
|
|
223 |
top: 10px;
|
224 |
right: 10px;
|
225 |
}
|
226 |
-
|
227 |
.wt-iew-sortable-placeholder td{ height:30px; background:#fff; border-top:dashed 1px #ccc; border-bottom:dashed 1px #ccc; }
|
228 |
.wt-iew-sortable-placeholder td:first-child{ border:dashed 1px #ccc; border-right:none; }
|
229 |
.wt-iew-sortable-placeholder td:last-child{ border:dashed 1px #ccc; border-left:none; }
|
@@ -246,8 +245,6 @@ span.wt_iew_mapping_field_val::after {
|
|
246 |
|
247 |
|
248 |
|
249 |
-
|
250 |
-
|
251 |
.wt_iew_import_progress_wrap{
|
252 |
position: fixed;
|
253 |
overflow: scroll;
|
@@ -283,6 +280,7 @@ span.wt_iew_mapping_field_val::after {
|
|
283 |
|
284 |
|
285 |
|
|
|
286 |
.wt_iew_import_progress table, .wt_iew_import_progress td {
|
287 |
border-collapse: collapse;
|
288 |
/*border: 1px solid #000;*/
|
@@ -651,12 +649,11 @@ img.tips {
|
|
651 |
.wt-ierpro-header{
|
652 |
background: #FFFFFF;
|
653 |
box-shadow: 0px 4px 19px rgba(49, 117, 252, 0.2);
|
654 |
-
border-radius: 7px;
|
655 |
padding: 8px;
|
656 |
margin: 0;
|
657 |
}
|
658 |
.wt-ierpro-name{
|
659 |
-
background: linear-gradient(
|
660 |
border-radius: 3px;
|
661 |
margin: 0;
|
662 |
padding: 16px;
|
@@ -664,7 +661,7 @@ img.tips {
|
|
664 |
align-items: center;
|
665 |
}
|
666 |
.wt-ierpro-name img{
|
667 |
-
width:
|
668 |
height: auto;
|
669 |
box-shadow: 4px 4px 4px rgba(92, 98, 215, 0.23);
|
670 |
border-radius: 7px;
|
@@ -672,11 +669,14 @@ img.tips {
|
|
672 |
.wt-ierpro-name h4{
|
673 |
font-style: normal;
|
674 |
font-weight: 600;
|
675 |
-
font-size:
|
676 |
line-height: 15px;
|
677 |
-
margin: 0 0
|
678 |
color: #5D63D9;
|
679 |
}
|
|
|
|
|
|
|
680 |
.wt-ierpro-mainfeatures ul{
|
681 |
padding: 0;
|
682 |
margin: 15px 25px 20px 25px;
|
@@ -754,7 +754,7 @@ img.tips {
|
|
754 |
color: #FFFFFF;
|
755 |
}
|
756 |
.wt-ierpro-features{
|
757 |
-
padding:
|
758 |
}
|
759 |
.wt-ierpro-features ul{
|
760 |
padding: 0;
|
@@ -833,6 +833,51 @@ ul.wt-ierpro-newfeat li {
|
|
833 |
transition: all .2s ease;
|
834 |
color: #FFFFFF;
|
835 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
836 |
|
837 |
|
838 |
|
@@ -1174,4 +1219,221 @@ ul.wt-ierpro-newfeat li {
|
|
1174 |
}
|
1175 |
}
|
1176 |
/* end marketing */
|
1177 |
-
.wt-iew-upgrade-to-pro-new-feature{ display:inline-block; width:60px; height:21px; background: url(../../assets/images/gopro/new_flag.svg) no-repeat; color:#fff; text-align:center; font-weight:normal; padding-left:4px; line-height:20px; font-size:12px; text-shadow:0px 2px 4px rgba(0, 0, 0, 0.35);}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
.wt-iew_conditional_help_text{ display:none;}
|
154 |
.wt-iew-form-table tr th:first-child{ width:40% !important; padding:10px 15px 10px 0; vertical-align:top; }
|
155 |
.wt-iew-form-table tr th:first-child label{ margin-top:5px; display:inline-block; }
|
156 |
+
.wt-iew-form-table tr td:nth-child(2){ width:42%; padding:10px 5px 10px 0; }
|
157 |
.wt-iew-form-table tr td:nth-child(3){ width:35%; }
|
158 |
.wt_form_radio_block, .wt_form_checkbox_block{ display:inline-block; margin-top:8px; }
|
159 |
.wt-iew-tab-container .wp-list-table thead th{ font-weight:bold; }
|
166 |
font-size: 18px;
|
167 |
width: 20px;
|
168 |
height: 20px;
|
169 |
+
color: gray;
|
170 |
position: absolute;
|
171 |
top: 10px;
|
172 |
right: 10px;
|
223 |
top: 10px;
|
224 |
right: 10px;
|
225 |
}
|
|
|
226 |
.wt-iew-sortable-placeholder td{ height:30px; background:#fff; border-top:dashed 1px #ccc; border-bottom:dashed 1px #ccc; }
|
227 |
.wt-iew-sortable-placeholder td:first-child{ border:dashed 1px #ccc; border-right:none; }
|
228 |
.wt-iew-sortable-placeholder td:last-child{ border:dashed 1px #ccc; border-left:none; }
|
245 |
|
246 |
|
247 |
|
|
|
|
|
248 |
.wt_iew_import_progress_wrap{
|
249 |
position: fixed;
|
250 |
overflow: scroll;
|
280 |
|
281 |
|
282 |
|
283 |
+
|
284 |
.wt_iew_import_progress table, .wt_iew_import_progress td {
|
285 |
border-collapse: collapse;
|
286 |
/*border: 1px solid #000;*/
|
649 |
.wt-ierpro-header{
|
650 |
background: #FFFFFF;
|
651 |
box-shadow: 0px 4px 19px rgba(49, 117, 252, 0.2);
|
|
|
652 |
padding: 8px;
|
653 |
margin: 0;
|
654 |
}
|
655 |
.wt-ierpro-name{
|
656 |
+
background: linear-gradient(178deg, #F4F1FF 3%, rgba(238, 240, 255, 0) 93.18%);
|
657 |
border-radius: 3px;
|
658 |
margin: 0;
|
659 |
padding: 16px;
|
661 |
align-items: center;
|
662 |
}
|
663 |
.wt-ierpro-name img{
|
664 |
+
width: 50px;
|
665 |
height: auto;
|
666 |
box-shadow: 4px 4px 4px rgba(92, 98, 215, 0.23);
|
667 |
border-radius: 7px;
|
669 |
.wt-ierpro-name h4{
|
670 |
font-style: normal;
|
671 |
font-weight: 600;
|
672 |
+
font-size: 15px;
|
673 |
line-height: 15px;
|
674 |
+
margin: 0 0 5px 12px;
|
675 |
color: #5D63D9;
|
676 |
}
|
677 |
+
.wt-ierpro-name .star-rating{
|
678 |
+
float: left;
|
679 |
+
}
|
680 |
.wt-ierpro-mainfeatures ul{
|
681 |
padding: 0;
|
682 |
margin: 15px 25px 20px 25px;
|
754 |
color: #FFFFFF;
|
755 |
}
|
756 |
.wt-ierpro-features{
|
757 |
+
padding: 20px 10px 10px 10px;
|
758 |
}
|
759 |
.wt-ierpro-features ul{
|
760 |
padding: 0;
|
833 |
transition: all .2s ease;
|
834 |
color: #FFFFFF;
|
835 |
}
|
836 |
+
.wt-ier-rating-number{
|
837 |
+
float: left;
|
838 |
+
margin-left:10px;
|
839 |
+
margin-right:10px;
|
840 |
+
margin-top: 3px;
|
841 |
+
}
|
842 |
+
.wt-ier-all-in-one-text{
|
843 |
+
text-align: center;
|
844 |
+
}
|
845 |
+
.wt-ier-all-in-one-text-sp{
|
846 |
+
padding: 10px;
|
847 |
+
font-weight: bold;
|
848 |
+
font-size: 12px;
|
849 |
+
}
|
850 |
+
.wt-ierpro-blue-btn-suite, .wt-ierpro-blue-btn-suite:visited{
|
851 |
+
background: linear-gradient(90.67deg, #2608DF -34.86%, #3284FF 115.74%);
|
852 |
+
box-shadow: 0px 4px 13px rgba(46, 80, 242, 0.39);
|
853 |
+
border-radius: 5px;
|
854 |
+
padding: 10px 15px 10px 38px;
|
855 |
+
display: inline-block;
|
856 |
+
font-style: normal;
|
857 |
+
font-weight: bold;
|
858 |
+
font-size: 14px;
|
859 |
+
line-height: 18px;
|
860 |
+
color: #FFFFFF;
|
861 |
+
text-decoration: none;
|
862 |
+
transition: all .2s ease;
|
863 |
+
position: relative;
|
864 |
+
border: none;
|
865 |
+
width: 70%;
|
866 |
+
}
|
867 |
+
|
868 |
+
.wt-ierpro-blue-btn-suite:hover{
|
869 |
+
box-shadow: 0px 4px 13px rgba(46, 80, 242, 0.5);
|
870 |
+
text-decoration: none;
|
871 |
+
transform: translateY(2px);
|
872 |
+
transition: all .2s ease;
|
873 |
+
color: #FFFFFF;
|
874 |
+
}
|
875 |
+
|
876 |
+
.wt-ier-suite-moneyback-wrap{
|
877 |
+
padding: 5px !important;
|
878 |
+
margin-bottom: 5px !important;
|
879 |
+
background: linear-gradient(178deg, #F4F1FF 3%, rgba(238, 240, 255, 0) 93.18%);
|
880 |
+
}
|
881 |
|
882 |
|
883 |
|
1219 |
}
|
1220 |
}
|
1221 |
/* end marketing */
|
1222 |
+
.wt-iew-upgrade-to-pro-new-feature{ display:inline-block; width:60px; height:21px; background: url(../../assets/images/gopro/new_flag.svg) no-repeat; color:#fff; text-align:center; font-weight:normal; padding-left:4px; line-height:20px; font-size:12px; text-shadow:0px 2px 4px rgba(0, 0, 0, 0.35);}
|
1223 |
+
|
1224 |
+
|
1225 |
+
|
1226 |
+
/* start small marketing section */
|
1227 |
+
.ier_pro_plugins_section_small{
|
1228 |
+
float: left;margin: 30px 2.5%;
|
1229 |
+
width: 100%;
|
1230 |
+
}
|
1231 |
+
.wt-import-export-upsell-small-wrapper.market-box{
|
1232 |
+
width:32%;
|
1233 |
+
float: left;
|
1234 |
+
margin-right: 15px;
|
1235 |
+
height:440px;
|
1236 |
+
background-color: #fff;
|
1237 |
+
}
|
1238 |
+
.wrap .wt-import-export-small-upsell-wrapper .ier-premium-upgrade {
|
1239 |
+
margin-top: 0px;
|
1240 |
+
margin-right: 0px;
|
1241 |
+
}
|
1242 |
+
.wt-import-export-upsell-small-wrapper .ier-premium-upgrade {
|
1243 |
+
margin-top: 0px;
|
1244 |
+
margin-right: 0px;
|
1245 |
+
}
|
1246 |
+
|
1247 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-sidebar{
|
1248 |
+
background: #FFFFFF;
|
1249 |
+
border-radius: 7px;
|
1250 |
+
padding: 0;
|
1251 |
+
}
|
1252 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-header{
|
1253 |
+
background: #FFFFFF;
|
1254 |
+
box-shadow: none;
|
1255 |
+
border-radius: 0px;
|
1256 |
+
padding: 0px;
|
1257 |
+
margin: 0;
|
1258 |
+
}
|
1259 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-name-small{
|
1260 |
+
margin: 0;
|
1261 |
+
padding: 16px;
|
1262 |
+
display: flex;
|
1263 |
+
align-items: center;
|
1264 |
+
}
|
1265 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-name-small img{
|
1266 |
+
width: 36px;
|
1267 |
+
height: auto;
|
1268 |
+
box-shadow: 4px 4px 4px rgba(92, 98, 215, 0.23);
|
1269 |
+
border-radius: 7px;
|
1270 |
+
}
|
1271 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-name-small h4{
|
1272 |
+
font-style: normal;
|
1273 |
+
font-weight: 600;
|
1274 |
+
font-size: 14px;
|
1275 |
+
line-height: 16px;
|
1276 |
+
margin: 0 0 0 12px;
|
1277 |
+
color: #5D63D9;
|
1278 |
+
}
|
1279 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-mainfeatures ul{
|
1280 |
+
padding: 0;
|
1281 |
+
margin: 15px 25px 20px 25px;
|
1282 |
+
}
|
1283 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-mainfeatures li{
|
1284 |
+
font-style: normal;
|
1285 |
+
font-weight: bold;
|
1286 |
+
font-size: 14px;
|
1287 |
+
line-height:24px;
|
1288 |
+
letter-spacing: -0.01em;
|
1289 |
+
list-style: none;
|
1290 |
+
position: relative;
|
1291 |
+
color: #091E80;
|
1292 |
+
padding-left: 28px;
|
1293 |
+
}
|
1294 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-mainfeatures li.money-back:before{
|
1295 |
+
content: '';
|
1296 |
+
position: absolute;
|
1297 |
+
left: 0;
|
1298 |
+
height:24px ;
|
1299 |
+
width: 16px;
|
1300 |
+
background-image: url(../../assets/images/gopro/money-back.svg);
|
1301 |
+
background-position: center;
|
1302 |
+
background-repeat: no-repeat;
|
1303 |
+
background-size: contain;
|
1304 |
+
}
|
1305 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-mainfeatures li.support:before{
|
1306 |
+
content: '';
|
1307 |
+
position: absolute;
|
1308 |
+
left: 0;
|
1309 |
+
height:24px ;
|
1310 |
+
width: 16px;
|
1311 |
+
background-image: url(../../assets/images/gopro/support.svg);
|
1312 |
+
background-position: center;
|
1313 |
+
background-repeat: no-repeat;
|
1314 |
+
background-size: contain;
|
1315 |
+
}
|
1316 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-btn-wrapper{
|
1317 |
+
display: block;
|
1318 |
+
margin: 20px auto 20px;
|
1319 |
+
text-align: center;
|
1320 |
+
}
|
1321 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-blue-btn, .wt-ierpro-blue-btn:visited{
|
1322 |
+
background: linear-gradient(90.67deg, #2608DF -34.86%, #3284FF 115.74%);
|
1323 |
+
box-shadow: 0px 4px 13px rgba(46, 80, 242, 0.39);
|
1324 |
+
border-radius: 5px;
|
1325 |
+
padding: 10px 15px 10px 38px;
|
1326 |
+
display: inline-block;
|
1327 |
+
font-style: normal;
|
1328 |
+
font-weight: bold;
|
1329 |
+
font-size: 14px;
|
1330 |
+
line-height: 18px;
|
1331 |
+
color: #FFFFFF;
|
1332 |
+
text-decoration: none;
|
1333 |
+
transition: all .2s ease;
|
1334 |
+
position: relative;
|
1335 |
+
border: none;
|
1336 |
+
}
|
1337 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-blue-btn:before{
|
1338 |
+
content: '';
|
1339 |
+
position: absolute;
|
1340 |
+
height: 15px;
|
1341 |
+
width: 18px;
|
1342 |
+
background-image: url(../../assets/images/gopro/white-crown.svg);
|
1343 |
+
background-size: contain;
|
1344 |
+
background-repeat: no-repeat;
|
1345 |
+
background-position: center;
|
1346 |
+
left: 15px;
|
1347 |
+
}
|
1348 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-blue-btn:hover{
|
1349 |
+
box-shadow: 0px 4px 13px rgba(46, 80, 242, 0.5);
|
1350 |
+
text-decoration: none;
|
1351 |
+
transform: translateY(2px);
|
1352 |
+
transition: all .2s ease;
|
1353 |
+
color: #FFFFFF;
|
1354 |
+
}
|
1355 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-features{
|
1356 |
+
padding: 0px 5px 5px 10px;
|
1357 |
+
}
|
1358 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-features ul{
|
1359 |
+
padding: 0;
|
1360 |
+
margin: 0;
|
1361 |
+
}
|
1362 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-features li{
|
1363 |
+
font-style: normal;
|
1364 |
+
font-weight: 500;
|
1365 |
+
font-size: 13px;
|
1366 |
+
line-height: 17px;
|
1367 |
+
color: #001A69;
|
1368 |
+
list-style: none;
|
1369 |
+
position: relative;
|
1370 |
+
padding-left: 35px;
|
1371 |
+
padding-right: 5px;
|
1372 |
+
margin: 0 0 15px 0;
|
1373 |
+
display: flex;
|
1374 |
+
align-items: center;
|
1375 |
+
}
|
1376 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-newfeat li:before{
|
1377 |
+
content: '';
|
1378 |
+
position: absolute;
|
1379 |
+
height: 39px;
|
1380 |
+
width: 39px;
|
1381 |
+
background-image: url(../../assets/images/gopro/new-badge.svg);
|
1382 |
+
background-size: contain;
|
1383 |
+
background-repeat: no-repeat;
|
1384 |
+
background-position: center;
|
1385 |
+
left: 0;
|
1386 |
+
}
|
1387 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-allfeat li:before{
|
1388 |
+
content: '';
|
1389 |
+
position: absolute;
|
1390 |
+
height: 16px;
|
1391 |
+
width: 16px;
|
1392 |
+
background-image: url(../../assets/images/gopro/tick.svg);
|
1393 |
+
background-size: contain;
|
1394 |
+
background-repeat: no-repeat;
|
1395 |
+
background-position: center;
|
1396 |
+
left: 10px;
|
1397 |
+
}
|
1398 |
+
.wt-import-export-upsell-small-wrapper ul.wt-ierpro-newfeat li {
|
1399 |
+
margin-bottom: 30px;
|
1400 |
+
}
|
1401 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-outline-btn, .wt-ierpro-outline-btn:visited{
|
1402 |
+
background: linear-gradient(90.67deg, #2608DF -34.86%, #3284FF 115.74%);
|
1403 |
+
box-shadow: 0px 4px 13px rgba(46, 80, 242, 0.39);
|
1404 |
+
border-radius: 5px;
|
1405 |
+
padding: 10px 15px 10px 38px;
|
1406 |
+
display: inline-block;
|
1407 |
+
font-style: normal;
|
1408 |
+
font-weight: bold;
|
1409 |
+
font-size: 14px;
|
1410 |
+
line-height: 18px;
|
1411 |
+
color: #FFFFFF;
|
1412 |
+
text-decoration: none;
|
1413 |
+
transition: all .2s ease;
|
1414 |
+
position: relative;
|
1415 |
+
border: none;
|
1416 |
+
}
|
1417 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-outline-btn:before{
|
1418 |
+
content: '';
|
1419 |
+
position: absolute;
|
1420 |
+
height: 15px;
|
1421 |
+
width: 18px;
|
1422 |
+
background-image: url(../../assets/images/gopro/white-crown.svg);
|
1423 |
+
background-size: contain;
|
1424 |
+
background-repeat: no-repeat;
|
1425 |
+
background-position: center;
|
1426 |
+
left: 15px;
|
1427 |
+
}
|
1428 |
+
.wt-import-export-upsell-small-wrapper .wt-ierpro-outline-btn:hover{
|
1429 |
+
box-shadow: 0px 4px 13px rgba(46, 80, 242, 0.5);
|
1430 |
+
text-decoration: none;
|
1431 |
+
transform: translateY(2px);
|
1432 |
+
transition: all .2s ease;
|
1433 |
+
color: #FFFFFF;
|
1434 |
+
}
|
1435 |
+
|
1436 |
+
.wp-submenu li span.wt-go-premium {
|
1437 |
+
font-weight: 700;
|
1438 |
+
color: #28e499;
|
1439 |
+
}
|
admin/modules/export/assets/js/main.js
CHANGED
@@ -327,6 +327,11 @@ var wt_iew_basic_export=(function( $ ) {
|
|
327 |
// {
|
328 |
// return false;
|
329 |
// }
|
|
|
|
|
|
|
|
|
|
|
330 |
|
331 |
if(action_type=='step')
|
332 |
{
|
@@ -635,12 +640,13 @@ var wt_iew_basic_export=(function( $ ) {
|
|
635 |
this.to_export_title=$('[name="wt_iew_export_post_type"] option:selected').text();
|
636 |
}
|
637 |
$('.wt_iew_step_head_post_type_name').html(this.to_export_title);
|
|
|
638 |
$('.wt-ierpro-blue-btn').attr("href", wt_iew_basic_params.pro_plugins[this.to_export]['url']);
|
639 |
$('.wt-ier-product-name').html(wt_iew_basic_params.pro_plugins[this.to_export]['name']);
|
640 |
$('.wt-ierpro-name>img').attr("src", wt_iew_basic_params.pro_plugins[this.to_export]['icon_url']);
|
641 |
$('.wt-ier-gopro-cta').hide();
|
642 |
$('.wt-ier-'+this.to_export).show();
|
643 |
-
|
644 |
$('.wt_iew_free_addon').hide();
|
645 |
$('.wt_iew_export_action_btn').prop('disabled', false);
|
646 |
if(!wt_iew_basic_params.pro_plugins[this.to_export]['is_active']){
|
327 |
// {
|
328 |
// return false;
|
329 |
// }
|
330 |
+
if(action!='post_type'){
|
331 |
+
$('.ier_pro_plugins_section_small').hide();
|
332 |
+
}else{
|
333 |
+
$('.ier_pro_plugins_section_small').show();
|
334 |
+
}
|
335 |
|
336 |
if(action_type=='step')
|
337 |
{
|
640 |
this.to_export_title=$('[name="wt_iew_export_post_type"] option:selected').text();
|
641 |
}
|
642 |
$('.wt_iew_step_head_post_type_name').html(this.to_export_title);
|
643 |
+
/*
|
644 |
$('.wt-ierpro-blue-btn').attr("href", wt_iew_basic_params.pro_plugins[this.to_export]['url']);
|
645 |
$('.wt-ier-product-name').html(wt_iew_basic_params.pro_plugins[this.to_export]['name']);
|
646 |
$('.wt-ierpro-name>img').attr("src", wt_iew_basic_params.pro_plugins[this.to_export]['icon_url']);
|
647 |
$('.wt-ier-gopro-cta').hide();
|
648 |
$('.wt-ier-'+this.to_export).show();
|
649 |
+
*/
|
650 |
$('.wt_iew_free_addon').hide();
|
651 |
$('.wt_iew_export_action_btn').prop('disabled', false);
|
652 |
if(!wt_iew_basic_params.pro_plugins[this.to_export]['is_active']){
|
admin/modules/export/export.php
CHANGED
@@ -139,10 +139,11 @@ class Wt_Import_Export_For_Woo_Basic_Export
|
|
139 |
$fields['default_export_batch']=array(
|
140 |
'label'=>__("Default Export batch count"),
|
141 |
'type'=>'number',
|
142 |
-
|
143 |
'field_name'=>'default_export_batch',
|
144 |
'help_text'=>__('Provide the default count for the records to be exported in a batch.'),
|
145 |
'validation_rule'=>array('type'=>'absint'),
|
|
|
146 |
);
|
147 |
return $fields;
|
148 |
}
|
139 |
$fields['default_export_batch']=array(
|
140 |
'label'=>__("Default Export batch count"),
|
141 |
'type'=>'number',
|
142 |
+
'value' =>30,
|
143 |
'field_name'=>'default_export_batch',
|
144 |
'help_text'=>__('Provide the default count for the records to be exported in a batch.'),
|
145 |
'validation_rule'=>array('type'=>'absint'),
|
146 |
+
'attr' => array('min' => 1, 'max' => 200),
|
147 |
);
|
148 |
return $fields;
|
149 |
}
|
admin/modules/export/views/main.php
CHANGED
@@ -46,7 +46,8 @@ Wt_Iew_IE_Basic_Helper::debug_panel($this->module_base);
|
|
46 |
|
47 |
<div class="wt_iew_loader_info_box"></div>
|
48 |
<div class="wt_iew_overlayed_loader"></div>
|
49 |
-
<div class="
|
|
|
50 |
<?php
|
51 |
foreach($this->steps as $stepk=>$stepv)
|
52 |
{
|
@@ -54,19 +55,10 @@ Wt_Iew_IE_Basic_Helper::debug_panel($this->module_base);
|
|
54 |
<div class="wt_iew_export_step wt_iew_export_step_<?php echo $stepk;?>" data-loaded="0"></div>
|
55 |
<?php
|
56 |
}
|
57 |
-
?>
|
58 |
</div>
|
|
|
|
|
|
|
59 |
<?php
|
60 |
-
include $wf_admin_view_path."market.php";
|
61 |
-
/*
|
62 |
-
<script type="text/javascript">
|
63 |
-
/* external modules can hook
|
64 |
-
function wt_iew_exporter_validate(action, action_type, is_previous_step)
|
65 |
-
{
|
66 |
-
var is_continue=true;
|
67 |
-
<?php
|
68 |
-
do_action('wt_iew_exporter_validate');
|
69 |
-
?>
|
70 |
-
return is_continue;
|
71 |
-
}
|
72 |
-
</script> */ ?>
|
46 |
|
47 |
<div class="wt_iew_loader_info_box"></div>
|
48 |
<div class="wt_iew_overlayed_loader"></div>
|
49 |
+
<div class="wt_iew_export_step_main_wrapper" style="width:68%; float: left">
|
50 |
+
<div class="wt_iew_export_step_main" style = "width:100%; float: left">
|
51 |
<?php
|
52 |
foreach($this->steps as $stepk=>$stepv)
|
53 |
{
|
55 |
<div class="wt_iew_export_step wt_iew_export_step_<?php echo $stepk;?>" data-loaded="0"></div>
|
56 |
<?php
|
57 |
}
|
58 |
+
?>
|
59 |
</div>
|
60 |
+
|
61 |
+
<?php include $wf_admin_view_path."market_front.php" ?>
|
62 |
+
</div>
|
63 |
<?php
|
64 |
+
include $wf_admin_view_path."market.php";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/modules/import/assets/js/main.js
CHANGED
@@ -504,6 +504,12 @@ var wt_iew_basic_import=(function( $ ) {
|
|
504 |
return false;
|
505 |
}
|
506 |
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
if(action_type=='step')
|
508 |
{
|
509 |
wt_iew_basic_import.change_step(action);
|
@@ -892,15 +898,17 @@ var wt_iew_basic_import=(function( $ ) {
|
|
892 |
this.to_import_title=$('[name="wt_iew_import_post_type"] option:selected').text();
|
893 |
}
|
894 |
$('.wt_iew_step_head_post_type_name').html(this.to_import_title);
|
|
|
|
|
|
|
|
|
|
|
895 |
$('.wt-ierpro-blue-btn').attr("href", wt_iew_basic_params.pro_plugins[this.to_import]['url']);
|
896 |
$('.wt-ier-product-name').html(wt_iew_basic_params.pro_plugins[this.to_import]['name']);
|
897 |
$('.wt-ierpro-name>img').attr("src", wt_iew_basic_params.pro_plugins[this.to_import]['icon_url']);
|
898 |
-
$('
|
899 |
-
if(this.to_import_title.includes('User'))
|
900 |
-
$('#user-required-field-message').show();
|
901 |
-
|
902 |
$('.wt-ier-gopro-cta').hide();
|
903 |
-
|
904 |
|
905 |
$('.wt_iew_free_addon').hide();
|
906 |
$('.wt_iew_import_action_btn').prop('disabled', false);
|
504 |
return false;
|
505 |
}
|
506 |
|
507 |
+
if(action!='post_type'){
|
508 |
+
$('.ier_pro_plugins_section_small').hide();
|
509 |
+
}else{
|
510 |
+
$('.ier_pro_plugins_section_small').show();
|
511 |
+
}
|
512 |
+
|
513 |
if(action_type=='step')
|
514 |
{
|
515 |
wt_iew_basic_import.change_step(action);
|
898 |
this.to_import_title=$('[name="wt_iew_import_post_type"] option:selected').text();
|
899 |
}
|
900 |
$('.wt_iew_step_head_post_type_name').html(this.to_import_title);
|
901 |
+
|
902 |
+
$('#sample-csv-file').attr("href", wt_iew_basic_params.pro_plugins[this.to_import]['sample_csv_url']);
|
903 |
+
if(this.to_import_title.includes('User'))
|
904 |
+
$('#user-required-field-message').show();
|
905 |
+
/*
|
906 |
$('.wt-ierpro-blue-btn').attr("href", wt_iew_basic_params.pro_plugins[this.to_import]['url']);
|
907 |
$('.wt-ier-product-name').html(wt_iew_basic_params.pro_plugins[this.to_import]['name']);
|
908 |
$('.wt-ierpro-name>img').attr("src", wt_iew_basic_params.pro_plugins[this.to_import]['icon_url']);
|
909 |
+
$('.wt-ier-'+this.to_import).show();
|
|
|
|
|
|
|
910 |
$('.wt-ier-gopro-cta').hide();
|
911 |
+
*/
|
912 |
|
913 |
$('.wt_iew_free_addon').hide();
|
914 |
$('.wt_iew_import_action_btn').prop('disabled', false);
|
admin/modules/import/import.php
CHANGED
@@ -133,7 +133,7 @@ class Wt_Import_Export_For_Woo_Basic_Import
|
|
133 |
'label'=>__("Default Import method"),
|
134 |
'type'=>'select',
|
135 |
'sele_vals'=>$import_methods,
|
136 |
-
|
137 |
'field_name'=>'default_import_method',
|
138 |
'field_group'=>'advanced_field',
|
139 |
'help_text'=>__('Select the default method of import.'),
|
@@ -141,10 +141,11 @@ class Wt_Import_Export_For_Woo_Basic_Import
|
|
141 |
$fields['default_import_batch']=array(
|
142 |
'label'=>__("Default Import batch count"),
|
143 |
'type'=>'number',
|
144 |
-
|
145 |
'field_name'=>'default_import_batch',
|
146 |
'help_text'=>__('Provide the default number of records to be imported in a batch.'),
|
147 |
'validation_rule'=>array('type'=>'absint'),
|
|
|
148 |
);
|
149 |
|
150 |
return $fields;
|
133 |
'label'=>__("Default Import method"),
|
134 |
'type'=>'select',
|
135 |
'sele_vals'=>$import_methods,
|
136 |
+
'value' =>'new',
|
137 |
'field_name'=>'default_import_method',
|
138 |
'field_group'=>'advanced_field',
|
139 |
'help_text'=>__('Select the default method of import.'),
|
141 |
$fields['default_import_batch']=array(
|
142 |
'label'=>__("Default Import batch count"),
|
143 |
'type'=>'number',
|
144 |
+
'value' =>10, /* If altering then please also change batch count field help text section */
|
145 |
'field_name'=>'default_import_batch',
|
146 |
'help_text'=>__('Provide the default number of records to be imported in a batch.'),
|
147 |
'validation_rule'=>array('type'=>'absint'),
|
148 |
+
'attr' => array('min' => 1, 'max' => 50),
|
149 |
);
|
150 |
|
151 |
return $fields;
|
admin/modules/import/views/main.php
CHANGED
@@ -110,7 +110,8 @@ Wt_Iew_IE_Basic_Helper::debug_panel($this->module_base);
|
|
110 |
<div class="wt_iew_loader_info_box"></div>
|
111 |
<div class="wt_iew_overlayed_loader"></div>
|
112 |
|
113 |
-
<div class="
|
|
|
114 |
<?php
|
115 |
foreach($this->steps as $stepk=>$stepv)
|
116 |
{
|
@@ -118,10 +119,14 @@ Wt_Iew_IE_Basic_Helper::debug_panel($this->module_base);
|
|
118 |
<div class="wt_iew_import_step wt_iew_import_step_<?php echo $stepk;?>" data-loaded="0"></div>
|
119 |
<?php
|
120 |
}
|
121 |
-
?>
|
122 |
</div>
|
|
|
|
|
|
|
123 |
<?php
|
124 |
-
include $wf_admin_view_path."market.php"
|
|
|
125 |
<script type="text/javascript">
|
126 |
/* external modules can hook */
|
127 |
function wt_iew_importer_validate_basic(action, action_type, is_previous_step)
|
110 |
<div class="wt_iew_loader_info_box"></div>
|
111 |
<div class="wt_iew_overlayed_loader"></div>
|
112 |
|
113 |
+
<div class="wt_iew_import_step_main_wrapper" style="width:68%; float: left">
|
114 |
+
<div class="wt_iew_import_step_main" style = "width:100%; float: left">
|
115 |
<?php
|
116 |
foreach($this->steps as $stepk=>$stepv)
|
117 |
{
|
119 |
<div class="wt_iew_import_step wt_iew_import_step_<?php echo $stepk;?>" data-loaded="0"></div>
|
120 |
<?php
|
121 |
}
|
122 |
+
?>
|
123 |
</div>
|
124 |
+
|
125 |
+
<?php include $wf_admin_view_path."market_front.php" ?>
|
126 |
+
</div>
|
127 |
<?php
|
128 |
+
include $wf_admin_view_path."market.php";
|
129 |
+
?>
|
130 |
<script type="text/javascript">
|
131 |
/* external modules can hook */
|
132 |
function wt_iew_importer_validate_basic(action, action_type, is_previous_step)
|
admin/views/market.php
CHANGED
@@ -7,23 +7,72 @@ if (!defined('ABSPATH')) {
|
|
7 |
<div class="wt-import-export-upsell-wrapper market-box table-box-main">
|
8 |
<div class="ier-premium-upgrade wt-ierpro-sidebar">
|
9 |
|
10 |
-
|
11 |
<div class="wt-ierpro-name">
|
12 |
-
<img src="<?php echo WT_U_IEW_PLUGIN_URL; ?>assets/images/gopro/
|
13 |
-
<
|
|
|
|
|
|
|
14 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
<div class="wt-ierpro-mainfeatures">
|
16 |
-
|
|
|
|
|
|
|
17 |
<li class="money-back"><?php _e('30 Day Money Back Guarantee'); ?></li>
|
18 |
<li class="support"><?php _e('Fast and Superior Support'); ?></li>
|
19 |
-
</ul>
|
20 |
-
<div class="wt-ierpro-btn-wrapper">
|
21 |
-
<a href="<?php echo admin_url('admin.php?page=wt_import_export_for_woo_basic#wt-pro-upgrade'); ?>" class="wt-ierpro-blue-btn" target="_blank"><?php _e('UPGRADE TO PREMIUM'); ?></a>
|
22 |
-
</div>
|
23 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
</div>
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
28 |
</div>
|
29 |
</div>
|
7 |
<div class="wt-import-export-upsell-wrapper market-box table-box-main">
|
8 |
<div class="ier-premium-upgrade wt-ierpro-sidebar">
|
9 |
|
10 |
+
<div class="wt-ierpro-header">
|
11 |
<div class="wt-ierpro-name">
|
12 |
+
<div style="float: left"><img src="<?php echo WT_U_IEW_PLUGIN_URL; ?>assets/images/gopro/suite.svg" alt="featured img" width="36" height="36"></div>
|
13 |
+
<div style="float: right">
|
14 |
+
<h4 class="wt-ier-product-name"><?php _e('Import Export Suite for WooCommerce'); ?></h4>
|
15 |
+
<span class="wt-ier-rating-number">4.8 </span> <?php wp_star_rating( array( 'rating' => 4.8, 'number'=> 5 ) ); ?>
|
16 |
+
</div>
|
17 |
</div>
|
18 |
+
<div class="wt-ier-all-in-one-text">
|
19 |
+
<span class="wt-ier-all-in-one-text-sp">
|
20 |
+
<?php esc_html_e('An All-In-One Plugin To Import & Export All Your WooCommerce Store Data'); ?>
|
21 |
+
</span>
|
22 |
+
</div>
|
23 |
+
|
24 |
+
|
25 |
+
<div class="wt-ier-user wt-ier-gopro-cta wt-ierpro-features">
|
26 |
+
<div class="wt-ier-suite-main-points">
|
27 |
+
<div class="wt-ier-suite-sub-points-left" style="float:left;">
|
28 |
+
<ul class="ticked-list wt-ierpro-allfeat">
|
29 |
+
<li><?php _e('Products'); ?></li>
|
30 |
+
<li><?php _e('Orders '); ?></li>
|
31 |
+
<li><?php _e('Subscriptions '); ?></li>
|
32 |
+
<li><?php _e('Coupons '); ?></li>
|
33 |
+
</ul>
|
34 |
+
</div>
|
35 |
+
<div class="wt-ier-suite-sub-points-right" style="float: right;">
|
36 |
+
<ul class="ticked-list wt-ierpro-allfeat">
|
37 |
+
<li><?php _e('Customers'); ?></li>
|
38 |
+
<li><?php _e('WordPress Users'); ?></li>
|
39 |
+
<li><?php _e('Categories & Tags '); ?></li>
|
40 |
+
<li><?php _e('Reviews'); ?></li>
|
41 |
+
</ul>
|
42 |
+
</div>
|
43 |
+
</div>
|
44 |
+
</div>
|
45 |
+
|
46 |
+
|
47 |
<div class="wt-ierpro-mainfeatures">
|
48 |
+
<div class="wt-ierpro-btn-wrapper">
|
49 |
+
<a href="<?php echo esc_url( "https://www.webtoffee.com/product/woocommerce-import-export-suite/?utm_source=free_plugin_revamp&utm_medium=basic_revamp&utm_campaign=Import_Export_Suite&utm_content=".WT_U_IEW_VERSION ); ?>" class="wt-ierpro-blue-btn-suite" target="_blank"><?php _e('GET THE PLUGIN'); ?> <span class="dashicons dashicons-arrow-right-alt"></span></a>
|
50 |
+
</div>
|
51 |
+
<ul class="wt-ier-suite-moneyback-wrap">
|
52 |
<li class="money-back"><?php _e('30 Day Money Back Guarantee'); ?></li>
|
53 |
<li class="support"><?php _e('Fast and Superior Support'); ?></li>
|
54 |
+
</ul>
|
|
|
|
|
|
|
55 |
</div>
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
<div class="wt-ier-user wt-ier-gopro-cta wt-ierpro-features">
|
60 |
+
<ul class="ticked-list wt-ierpro-allfeat">
|
61 |
+
<li><?php _e('Supports Excel, XML, CSV, and TSV file formats'); ?></li>
|
62 |
+
<li><?php _e('Schedule automated import & export'); ?></li>
|
63 |
+
<li><?php _e('Import and export from URL, FTP/SFTP '); ?></li>
|
64 |
+
<li><?php _e('Import & export custom fields and values'); ?></li>
|
65 |
+
<li><?php _e('Advanced filters and customizations for import & export'); ?></li>
|
66 |
+
<li><?php _e('Add & update data while importing'); ?></li>
|
67 |
+
<li><?php _e('Maintains action history and debug logs'); ?></li>
|
68 |
+
<li><?php _e('Simple and easy-to-use interface'); ?></li>
|
69 |
+
<li><?php _e('Compatible with major 3rd-party plugins'); ?></li>
|
70 |
+
<li><?php _e('Timely updates and fixes'); ?></li>
|
71 |
+
</ul>
|
72 |
</div>
|
73 |
+
|
74 |
+
|
75 |
+
</div>
|
76 |
+
|
77 |
</div>
|
78 |
</div>
|
admin/views/market_front.php
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if (!defined('ABSPATH')) {
|
3 |
+
exit;
|
4 |
+
}
|
5 |
+
?>
|
6 |
+
|
7 |
+
<div class="ier_pro_plugins_section_small">
|
8 |
+
<div class="wt-import-export-upsell-small-wrapper market-box table-box-main">
|
9 |
+
<div class="ier-premium-upgrade wt-ierpro-sidebar">
|
10 |
+
<div class="wt-ierpro-header">
|
11 |
+
<div class="wt-ierpro-name-small">
|
12 |
+
<img src="<?php echo WT_U_IEW_PLUGIN_URL; ?>assets/images/gopro/order-ie.svg" alt="featured img" width="36" height="36">
|
13 |
+
<h4 class="wt-ier-product-name-small"><?php _e('Order, Coupon, Subscription Import Export for WooCommerce'); ?></h4>
|
14 |
+
</div>
|
15 |
+
<p style="margin-left:25px;"><b><?php _e('All free version features'); ?> +</b></p>
|
16 |
+
<div class="wt-ier-product-features wt-ier-gopro-cta-small wt-ierpro-features">
|
17 |
+
<ul class="ticked-list wt-ierpro-allfeat">
|
18 |
+
<li><?php _e('Import & export in Excel, XML, CSV, and TSV formats'); ?></li>
|
19 |
+
<li><?php _e('Schedule automated import & export'); ?></li>
|
20 |
+
<li><?php _e('Advanced filters and customizations for better control'); ?></li>
|
21 |
+
<li><?php _e('Email customers on order status change'); ?></li>
|
22 |
+
<li><?php _e('Create users on order import'); ?></li>
|
23 |
+
</ul>
|
24 |
+
<div class="wt-ierpro-btn-wrapper">
|
25 |
+
<a href="<?php echo esc_url( "https://www.webtoffee.com/product/order-import-export-plugin-for-woocommerce/?utm_source=free_plugin_revamp&utm_medium=basic_revamp&utm_campaign=Order_Import_Export&utm_content=" . WT_U_IEW_VERSION ); ?>" target="_blank" class="wt-ierpro-outline-btn"><?php _e('UPGRADE TO PREMIUM'); ?></a>
|
26 |
+
</div>
|
27 |
+
</div>
|
28 |
+
</div>
|
29 |
+
</div>
|
30 |
+
</div>
|
31 |
+
|
32 |
+
<div class="wt-import-export-upsell-small-wrapper market-box table-box-main">
|
33 |
+
<div class="ier-premium-upgrade wt-ierpro-sidebar">
|
34 |
+
<div class="wt-ierpro-header">
|
35 |
+
<div class="wt-ierpro-name-small">
|
36 |
+
<img src="<?php echo WT_U_IEW_PLUGIN_URL; ?>assets/images/gopro/product-ie.svg" alt="featured img" width="36" height="36">
|
37 |
+
<h4 class="wt-ier-product-name-small"><?php _e('Product Import Export Plugin For WooCommerce'); ?></h4>
|
38 |
+
</div>
|
39 |
+
<p style="margin-left:25px;"><b><?php _e('All free version features'); ?> +</b></p>
|
40 |
+
<div class="wt-ier-product-features wt-ier-gopro-cta-small wt-ierpro-features">
|
41 |
+
<ul class="ticked-list wt-ierpro-allfeat">
|
42 |
+
<li><?php _e('Export and import variable products, subscription'); ?></li>
|
43 |
+
<li><?php _e('Import & export in Excel, XML, CSV, and TSV formats'); ?></li>
|
44 |
+
<li><?php _e('Schedule automated import & export'); ?></li>
|
45 |
+
<li><?php _e('Advanced filters and customizations for better control'); ?></li>
|
46 |
+
<li><?php _e('Export product images in a separate zip file'); ?></li>
|
47 |
+
</ul>
|
48 |
+
<div class="wt-ierpro-btn-wrapper">
|
49 |
+
<a href="<?php echo esc_url( "https://www.webtoffee.com/product/product-import-export-woocommerce/?utm_source=free_plugin_revamp&utm_medium=basic_revamp&utm_campaign=Product_Import_Export&utm_content=" . WT_U_IEW_VERSION ); ?>" target="_blank" class="wt-ierpro-outline-btn"><?php _e('UPGRADE TO PREMIUM'); ?></a>
|
50 |
+
</div>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
</div>
|
54 |
+
</div>
|
55 |
+
|
56 |
+
<div class="wt-import-export-upsell-small-wrapper market-box table-box-main" style="margin:0px;">
|
57 |
+
<div class="ier-premium-upgrade wt-ierpro-sidebar">
|
58 |
+
<div class="wt-ierpro-header">
|
59 |
+
<div class="wt-ierpro-name-small">
|
60 |
+
<img src="<?php echo WT_U_IEW_PLUGIN_URL; ?>assets/images/gopro/user-ie.svg" alt="featured img" width="36" height="36">
|
61 |
+
<h4 class="wt-ier-product-name-small"><?php _e('WordPress Users & WooCommerce Customers Import Export'); ?></h4>
|
62 |
+
</div>
|
63 |
+
<p style="margin-left:25px;"><b><?php _e('All free version features'); ?> +</b></p>
|
64 |
+
<div class="wt-ier-product-features wt-ier-gopro-cta-small wt-ierpro-features">
|
65 |
+
<ul class="ticked-list wt-ierpro-allfeat">
|
66 |
+
<li><?php _e('Import & export in Excel, XML, CSV, and TSV formats'); ?></li>
|
67 |
+
<li><?php _e('Advanced filters and customizations for better control'); ?></li>
|
68 |
+
<li><?php _e('Customize and send emails to new users on import'); ?></li>
|
69 |
+
<li><?php _e('Export and import custom fields and third-party '); ?></li>
|
70 |
+
<li><?php _e('Schedule automated import & export '); ?></li>
|
71 |
+
</ul>
|
72 |
+
<div class="wt-ierpro-btn-wrapper">
|
73 |
+
<a href="<?php echo esc_url( "https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/?utm_source=free_plugin_revamp&utm_medium=basic_revamp&utm_campaign=User_Import_Export&utm_content=" . WT_U_IEW_VERSION ); ?>" target="_blank" class="wt-ierpro-outline-btn"><?php _e('UPGRADE TO PREMIUM'); ?></a>
|
74 |
+
</div>
|
75 |
+
</div>
|
76 |
+
</div>
|
77 |
+
</div>
|
78 |
+
</div>
|
79 |
+
</div>
|
includes/class-wt-import-export-for-woo.php
CHANGED
@@ -80,7 +80,7 @@ class Wt_Import_Export_For_Woo_Basic {
|
|
80 |
if ( defined( 'WT_U_IEW_VERSION' ) ) {
|
81 |
$this->version = WT_U_IEW_VERSION;
|
82 |
} else {
|
83 |
-
$this->version = '2.3.
|
84 |
}
|
85 |
$this->plugin_name = 'wt-import-export-for-woo-basic';
|
86 |
|
80 |
if ( defined( 'WT_U_IEW_VERSION' ) ) {
|
81 |
$this->version = WT_U_IEW_VERSION;
|
82 |
} else {
|
83 |
+
$this->version = '2.3.5';
|
84 |
}
|
85 |
$this->plugin_name = 'wt-import-export-for-woo-basic';
|
86 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: user import, user export, csv, woocommerce, customers, export import users
|
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 6.0
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 2.3.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -28,7 +28,7 @@ WordPress User Import Export plugin allows the import and export of WordPress us
|
|
28 |
🔸 Export Guest users - Include data of WooCommerce guest customers(users who bought products from site without creating an account).
|
29 |
🔸 Export specific users based on username/email - Suggests email addresses and names in export data filter fields while you type in.
|
30 |
🔸 Tested OK with WordPress 6.0
|
31 |
-
🔸 Tested OK with WooCommerce
|
32 |
🔸 Tested OK with PHP 8.0
|
33 |
|
34 |
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.
|
@@ -208,6 +208,9 @@ Please refer the article on how to <a href="https://www.webtoffee.com/refresh-wo
|
|
208 |
|
209 |
== Changelog ==
|
210 |
|
|
|
|
|
|
|
211 |
= 2.3.4 2022-08-30 =
|
212 |
* Bugfix: Duplicate export button on user listing page when both Pro and Free versions are active.
|
213 |
* Bugfix: Uncaught Error: Class 'Wt_Import_Export_For_Woo_History'
|
@@ -430,7 +433,6 @@ Please refer the article on how to <a href="https://www.webtoffee.com/refresh-wo
|
|
430 |
|
431 |
== Upgrade Notice ==
|
432 |
|
433 |
-
= 2.3.
|
434 |
-
*
|
435 |
-
*
|
436 |
-
* WooCommerce 6.8 Tested OK.
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 6.0
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 2.3.5
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
28 |
🔸 Export Guest users - Include data of WooCommerce guest customers(users who bought products from site without creating an account).
|
29 |
🔸 Export specific users based on username/email - Suggests email addresses and names in export data filter fields while you type in.
|
30 |
🔸 Tested OK with WordPress 6.0
|
31 |
+
🔸 Tested OK with WooCommerce 7.0
|
32 |
🔸 Tested OK with PHP 8.0
|
33 |
|
34 |
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.
|
208 |
|
209 |
== Changelog ==
|
210 |
|
211 |
+
= 2.3.5 2022-10-25 =
|
212 |
+
* WooCommerce 7.0 Tested OK.
|
213 |
+
* Enhancement: Set Min and Max limit for import and export default batch count in General setting page.
|
214 |
= 2.3.4 2022-08-30 =
|
215 |
* Bugfix: Duplicate export button on user listing page when both Pro and Free versions are active.
|
216 |
* Bugfix: Uncaught Error: Class 'Wt_Import_Export_For_Woo_History'
|
433 |
|
434 |
== Upgrade Notice ==
|
435 |
|
436 |
+
= 2.3.5 =
|
437 |
+
* WooCommerce 7.0 Tested OK.
|
438 |
+
* Enhancement: Set Min and Max limit for import and export default batch count in General setting page.
|
|
users-customers-import-export-for-wp-woocommerce.php
CHANGED
@@ -5,10 +5,10 @@
|
|
5 |
Description: Export and Import User/Customers details From and To your WordPress/WooCommerce.
|
6 |
Author: WebToffee
|
7 |
Author URI: https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/
|
8 |
-
Version: 2.3.
|
9 |
Text Domain: users-customers-import-export-for-wp-woocommerce
|
10 |
Domain Path: /languages
|
11 |
-
WC tested up to:
|
12 |
Requires at least: 3.0
|
13 |
Requires PHP: 5.6
|
14 |
License: GPLv3
|
@@ -48,7 +48,7 @@ if (!defined('WT_IEW_DEBUG_BASIC_TROUBLESHOOT')) {
|
|
48 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
49 |
* Rename this for your plugin and update it as you release new versions.
|
50 |
*/
|
51 |
-
define('WT_U_IEW_VERSION', '2.3.
|
52 |
|
53 |
/**
|
54 |
* The code that runs during plugin activation.
|
5 |
Description: Export and Import User/Customers details From and To your WordPress/WooCommerce.
|
6 |
Author: WebToffee
|
7 |
Author URI: https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/
|
8 |
+
Version: 2.3.5
|
9 |
Text Domain: users-customers-import-export-for-wp-woocommerce
|
10 |
Domain Path: /languages
|
11 |
+
WC tested up to: 7.0
|
12 |
Requires at least: 3.0
|
13 |
Requires PHP: 5.6
|
14 |
License: GPLv3
|
48 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
49 |
* Rename this for your plugin and update it as you release new versions.
|
50 |
*/
|
51 |
+
define('WT_U_IEW_VERSION', '2.3.5');
|
52 |
|
53 |
/**
|
54 |
* The code that runs during plugin activation.
|