Version Description
2022-05-12 = * WC 6.4 Tested OK. * Enhancement: Bulk delete import logs.
Download this release
Release Info
Developer | webtoffee |
Plugin | Product Import Export for WooCommerce |
Version | 2.2.0 |
Comparing to | |
See all releases |
Code changes from version 2.1.9 to 2.2.0
- admin/css/wt-import-export-for-woo-admin.css +1 -1
- admin/modules/history/assets/js/main.js +18 -0
- admin/modules/history/history.php +14 -13
- admin/modules/history/views/_log_list.php +23 -1
- admin/views/admin-settings-marketing.php +472 -393
- includes/class-wt-import-export-for-woo.php +1 -1
- product-import-export-for-woo.php +4 -4
- readme.txt +8 -6
admin/css/wt-import-export-for-woo-admin.css
CHANGED
@@ -974,7 +974,7 @@ ul.wt-ierpro-newfeat li {
|
|
974 |
}
|
975 |
.wt-ier-table tr td li{
|
976 |
text-align: left;
|
977 |
-
list-style:
|
978 |
}
|
979 |
|
980 |
@media (min-width: 992px){
|
974 |
}
|
975 |
.wt-ier-table tr td li{
|
976 |
text-align: left;
|
977 |
+
list-style: none;
|
978 |
}
|
979 |
|
980 |
@media (min-width: 992px){
|
admin/modules/history/assets/js/main.js
CHANGED
@@ -184,6 +184,24 @@ var wt_iew_basic_history=(function( $ ) {
|
|
184 |
}
|
185 |
}
|
186 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
});
|
188 |
}
|
189 |
}
|
184 |
}
|
185 |
}
|
186 |
}
|
187 |
+
});
|
188 |
+
$('.wt_iew_bulk_action_logs_btn').click(function(){
|
189 |
+
if($('.wt_iew_history_checkbox_sub:checked').length>0 && $('.wt_iew_bulk_action option:selected').val()!="")
|
190 |
+
{
|
191 |
+
var cr_action=$('.wt_iew_bulk_action option:selected').val();
|
192 |
+
if(cr_action=='delete')
|
193 |
+
{
|
194 |
+
if(confirm(wt_iew_history_basic_params.msgs.sure))
|
195 |
+
{
|
196 |
+
var id_arr=new Array();
|
197 |
+
$('.wt_iew_history_checkbox_sub:checked').each(function(){
|
198 |
+
id_arr.push($(this).val());
|
199 |
+
});
|
200 |
+
var delete_url=wt_iew_history_basic_params.delete_url.replace('_log_file_', id_arr.join(','));
|
201 |
+
window.location.href=delete_url;
|
202 |
+
}
|
203 |
+
}
|
204 |
+
}
|
205 |
});
|
206 |
}
|
207 |
}
|
admin/modules/history/history.php
CHANGED
@@ -252,22 +252,23 @@ class Wt_Import_Export_For_Woo_Basic_History
|
|
252 |
{
|
253 |
if(Wt_Iew_Sh::check_write_access(WT_IEW_PLUGIN_ID_BASIC))
|
254 |
{
|
255 |
-
$
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
|
|
266 |
}
|
267 |
}
|
268 |
-
}
|
269 |
}
|
270 |
-
}
|
271 |
|
272 |
$delete_url_params['wt_iew_delete_log']=1;
|
273 |
$delete_url_params['wt_iew_log_file']='_log_file_';
|
252 |
{
|
253 |
if(Wt_Iew_Sh::check_write_access(WT_IEW_PLUGIN_ID_BASIC))
|
254 |
{
|
255 |
+
$log_file_arr = isset($_GET['wt_iew_log_file']) ? explode(",", $_GET['wt_iew_log_file']) : array();
|
256 |
+
$log_file_arr = Wt_Iew_Sh::sanitize_item($log_file_arr, 'text_arr');
|
257 |
+
|
258 |
+
if (is_array($log_file_arr)) {
|
259 |
+
foreach ($log_file_arr as $log_file_name) {
|
260 |
+
$ext_arr = explode(".", $log_file_name);
|
261 |
+
$ext = end($ext_arr);
|
262 |
+
if ($ext == 'log') {
|
263 |
+
$log_file_path = Wt_Import_Export_For_Woo_Basic_Log::get_file_path($log_file_name);
|
264 |
+
if (file_exists($log_file_path) && is_file($log_file_path)) {
|
265 |
+
@unlink($log_file_path);
|
266 |
+
}
|
267 |
}
|
268 |
}
|
269 |
+
}
|
270 |
}
|
271 |
+
}
|
272 |
|
273 |
$delete_url_params['wt_iew_delete_log']=1;
|
274 |
$delete_url_params['wt_iew_log_file']='_log_file_';
|
admin/modules/history/views/_log_list.php
CHANGED
@@ -35,21 +35,39 @@ if(isset($_GET['wt_iew_delete_log']))
|
|
35 |
}
|
36 |
krsort($indexed_log_files);
|
37 |
$log_files = $indexed_log_files;
|
|
|
38 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
<table class="wp-list-table widefat fixed striped history_list_tb log_list_tb">
|
40 |
<thead>
|
41 |
<tr>
|
|
|
|
|
|
|
|
|
42 |
<th class="log_file_name_col"><?php _e("File"); ?></th>
|
43 |
<th><?php _e("Actions"); ?></th>
|
44 |
</tr>
|
45 |
</thead>
|
46 |
<tbody>
|
47 |
<?php
|
|
|
48 |
foreach($log_files as $log_file)
|
49 |
{
|
|
|
50 |
$file_name=basename($log_file);
|
51 |
?>
|
52 |
<tr>
|
|
|
|
|
|
|
|
|
53 |
<td class="log_file_name_col"><a class="wt_iew_view_log_btn" data-log-file="<?php echo $file_name;?>"><?php echo $file_name; ?></a></td>
|
54 |
<td>
|
55 |
<a class="wt_iew_delete_log" data-href="<?php echo str_replace('_log_file_', $file_name, $delete_url);?>"><?php _e('Delete'); ?></a>
|
@@ -66,7 +84,11 @@ if(isset($_GET['wt_iew_delete_log']))
|
|
66 |
}else
|
67 |
{
|
68 |
?>
|
69 |
-
<h4 class="wt_iew_history_no_records"><?php _e("No logs found.");
|
|
|
|
|
|
|
|
|
70 |
<?php
|
71 |
}
|
72 |
?>
|
35 |
}
|
36 |
krsort($indexed_log_files);
|
37 |
$log_files = $indexed_log_files;
|
38 |
+
|
39 |
?>
|
40 |
+
<div class="wt_iew_bulk_action_box">
|
41 |
+
<select class="wt_iew_bulk_action wt_iew_select">
|
42 |
+
<option value=""><?php _e( 'Bulk Actions' ); ?></option>
|
43 |
+
<option value="delete"><?php _e( 'Delete' ); ?></option>
|
44 |
+
</select>
|
45 |
+
<button class="button button-primary wt_iew_bulk_action_logs_btn" type="button" style="float:left;"><?php _e( 'Apply' ); ?></button>
|
46 |
+
</div>
|
47 |
<table class="wp-list-table widefat fixed striped history_list_tb log_list_tb">
|
48 |
<thead>
|
49 |
<tr>
|
50 |
+
<th width="100">
|
51 |
+
<input type="checkbox" name="" class="wt_iew_history_checkbox_main">
|
52 |
+
<?php _e("No."); ?>
|
53 |
+
</th>
|
54 |
<th class="log_file_name_col"><?php _e("File"); ?></th>
|
55 |
<th><?php _e("Actions"); ?></th>
|
56 |
</tr>
|
57 |
</thead>
|
58 |
<tbody>
|
59 |
<?php
|
60 |
+
$i = 0;
|
61 |
foreach($log_files as $log_file)
|
62 |
{
|
63 |
+
$i++;
|
64 |
$file_name=basename($log_file);
|
65 |
?>
|
66 |
<tr>
|
67 |
+
<th>
|
68 |
+
<input type="checkbox" value="<?php echo $file_name;?>" name="logfile_name[]" class="wt_iew_history_checkbox_sub">
|
69 |
+
<?php echo $i;?>
|
70 |
+
</td>
|
71 |
<td class="log_file_name_col"><a class="wt_iew_view_log_btn" data-log-file="<?php echo $file_name;?>"><?php echo $file_name; ?></a></td>
|
72 |
<td>
|
73 |
<a class="wt_iew_delete_log" data-href="<?php echo str_replace('_log_file_', $file_name, $delete_url);?>"><?php _e('Delete'); ?></a>
|
84 |
}else
|
85 |
{
|
86 |
?>
|
87 |
+
<h4 class="wt_iew_history_no_records"><?php _e( "No logs found." ); ?>
|
88 |
+
<?php if ( Wt_Import_Export_For_Woo_Basic_Common_Helper::get_advanced_settings( 'enable_import_log' ) == 0 ): ?>
|
89 |
+
<span> <?php _e( 'Please enable import log under' ); ?> <a target="_blank" href="<?php echo admin_url( 'admin.php?page=wt_import_export_for_woo_basic' ) ?>"><?php _e( 'settings' ); ?></a></span>
|
90 |
+
<?php endif; ?>
|
91 |
+
</h4>
|
92 |
<?php
|
93 |
}
|
94 |
?>
|
admin/views/admin-settings-marketing.php
CHANGED
@@ -47,7 +47,6 @@ if ( ! defined( 'WPINC' ) ) {
|
|
47 |
<div class="wt-ier-modal-content">
|
48 |
<div class="wt-ier-resposive-table">
|
49 |
<table class="wt-ier-table">
|
50 |
-
|
51 |
<thead>
|
52 |
<tr class="wt-ier-top-tr">
|
53 |
<td></td>
|
@@ -62,147 +61,194 @@ if ( ! defined( 'WPINC' ) ) {
|
|
62 |
</thead>
|
63 |
<tbody>
|
64 |
<tr>
|
65 |
-
<td><?php _e('Import and export
|
66 |
-
<td
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
<td>
|
69 |
-
|
70 |
-
|
71 |
-
<li
|
72 |
-
|
73 |
-
|
74 |
-
<li
|
75 |
-
<li
|
|
|
|
|
|
|
76 |
</ul>
|
77 |
</td>
|
78 |
</tr>
|
79 |
<tr>
|
80 |
-
<td><?php _e('
|
81 |
-
<td
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
<td
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
118 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
119 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
120 |
-
</tr>
|
121 |
-
<tr>
|
122 |
-
<td><?php _e('Import by uploading CSV');?></td>
|
123 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
124 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
125 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
126 |
-
</tr>
|
127 |
-
<tr>
|
128 |
-
<td><?php _e('Import/Export history');?></td>
|
129 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
130 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
131 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
132 |
-
</tr>
|
133 |
-
<tr>
|
134 |
-
<td><?php _e('Debug logs');?></td>
|
135 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
136 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
137 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
138 |
-
</tr>
|
139 |
-
<tr>
|
140 |
-
<td><?php _e('Supports multiple file formats');?></td>
|
141 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"><p><?php _e('Only supports CSV');?></p></td>
|
142 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
143 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
144 |
-
</tr>
|
145 |
-
<tr>
|
146 |
-
<td><?php _e('Import/Export file via FTP/SFTP');?></td>
|
147 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
148 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
149 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
150 |
-
</tr>
|
151 |
-
<tr>
|
152 |
-
<td><?php _e('Import from URL');?></td>
|
153 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
154 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
155 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
156 |
-
</tr>
|
157 |
-
<tr>
|
158 |
-
<td><?php _e('Export product images as a zip');?></td>
|
159 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
160 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
161 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
162 |
-
</tr>
|
163 |
-
<tr>
|
164 |
-
<td><?php _e('Choose delimiter');?></td>
|
165 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
166 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
167 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
168 |
-
</tr>
|
169 |
-
<tr>
|
170 |
-
<td><?php _e('Support for multiple product types');?></td>
|
171 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
172 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
173 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
174 |
-
</tr>
|
175 |
-
<tr>
|
176 |
-
<td><?php _e('Automatic scheduled import/export');?></td>
|
177 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
178 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
179 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
180 |
-
</tr>
|
181 |
-
<tr>
|
182 |
-
<td><?php _e('Import/Export hidden meta');?></td>
|
183 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
184 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
185 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
186 |
-
</tr>
|
187 |
-
<tr>
|
188 |
-
<td><?php _e('Third-party plugin filter support');?></td>
|
189 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
190 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
191 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
192 |
</tr>
|
193 |
-
|
194 |
-
<td><?php _e('
|
195 |
-
<td
|
196 |
-
|
197 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
</tr>
|
199 |
-
|
200 |
-
<td><?php _e('
|
201 |
-
<td
|
202 |
-
|
203 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
</tr>
|
205 |
-
|
206 |
</tbody>
|
207 |
</table>
|
208 |
</div>
|
@@ -213,138 +259,151 @@ if ( ! defined( 'WPINC' ) ) {
|
|
213 |
<div class="wt-ier-modal-content">
|
214 |
<div class="wt-ier-resposive-table">
|
215 |
<table class="wt-ier-table">
|
216 |
-
|
217 |
-
<
|
218 |
-
<
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
<
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
<
|
230 |
-
<
|
231 |
-
|
232 |
-
|
233 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
<td>
|
235 |
-
|
236 |
-
|
237 |
-
<li
|
238 |
-
|
239 |
-
<li
|
240 |
-
|
241 |
-
|
|
|
|
|
|
|
242 |
</ul>
|
243 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
</tr>
|
245 |
-
|
246 |
-
<td><?php _e('
|
247 |
-
<td
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
<td
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
<td
|
274 |
-
|
275 |
-
|
276 |
-
<td
|
277 |
-
|
278 |
-
|
279 |
-
<td
|
280 |
-
|
281 |
-
|
282 |
-
<td
|
283 |
-
|
284 |
-
|
285 |
-
<td
|
286 |
-
|
287 |
-
|
288 |
-
<td
|
289 |
-
|
290 |
-
|
291 |
-
<td
|
292 |
-
|
293 |
-
|
294 |
-
<td
|
295 |
-
|
296 |
-
|
297 |
-
<td
|
298 |
-
|
299 |
-
|
300 |
-
<td
|
301 |
-
|
302 |
-
|
303 |
-
<td
|
304 |
-
|
305 |
-
|
306 |
-
<td
|
307 |
-
|
308 |
-
|
309 |
-
<td
|
310 |
-
|
311 |
-
|
312 |
-
<td
|
313 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"><p><?php _e('CSV only');?></p></td>
|
314 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
315 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
316 |
-
</tr>
|
317 |
-
<tr>
|
318 |
-
<td><?php _e('Choose delimiter');?></td>
|
319 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
320 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
321 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
322 |
-
</tr>
|
323 |
-
<tr>
|
324 |
-
<td><?php _e('Import from URL');?></td>
|
325 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
326 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
327 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
328 |
-
</tr>
|
329 |
-
<tr>
|
330 |
-
<td><?php _e('Import/export via FTP');?></td>
|
331 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
332 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
333 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
334 |
-
</tr>
|
335 |
-
<tr>
|
336 |
-
<td><?php _e('Scheduled Import/Export using Cron');?></td>
|
337 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
338 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
339 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
340 |
-
</tr>
|
341 |
-
<tr>
|
342 |
-
<td><?php _e('Third-party plugin filter support');?></td>
|
343 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
344 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
345 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
346 |
</tr>
|
347 |
-
|
348 |
</tbody>
|
349 |
</table>
|
350 |
</div>
|
@@ -355,142 +414,162 @@ if ( ! defined( 'WPINC' ) ) {
|
|
355 |
<div class="wt-ier-modal-content">
|
356 |
<div class="wt-ier-resposive-table">
|
357 |
<table class="wt-ier-table">
|
358 |
-
|
359 |
-
<
|
360 |
-
<
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
<
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
<
|
372 |
-
<
|
373 |
-
|
374 |
-
|
375 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
<td>
|
377 |
-
|
378 |
-
|
379 |
-
<li
|
380 |
-
<li
|
381 |
-
|
382 |
-
<li
|
383 |
-
|
|
|
|
|
|
|
384 |
</ul>
|
385 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
</tr>
|
387 |
-
|
388 |
-
<td><?php _e('
|
389 |
-
<td
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
<td
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
<td
|
416 |
-
|
417 |
-
|
418 |
-
<td
|
419 |
-
|
420 |
-
|
421 |
-
<td
|
422 |
-
|
423 |
-
|
424 |
-
<td
|
425 |
-
|
426 |
-
|
427 |
-
<td
|
428 |
-
|
429 |
-
|
430 |
-
<td
|
431 |
-
|
432 |
-
|
433 |
-
<td
|
434 |
-
|
435 |
-
|
436 |
-
<td
|
437 |
-
|
438 |
-
|
439 |
-
<td
|
440 |
-
|
441 |
-
|
442 |
-
<td
|
443 |
-
|
444 |
-
|
445 |
-
<td
|
446 |
-
|
447 |
-
|
448 |
-
<td
|
449 |
-
|
450 |
-
|
451 |
-
<td
|
452 |
-
|
453 |
-
|
454 |
-
<td
|
455 |
-
|
456 |
-
|
457 |
-
<td
|
458 |
-
|
459 |
-
|
460 |
-
<td
|
461 |
-
|
462 |
-
|
463 |
-
<td
|
464 |
-
|
465 |
-
|
466 |
-
<td
|
467 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
468 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
469 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
470 |
-
</tr>
|
471 |
-
<tr>
|
472 |
-
<td><?php _e('Platform independent XML Import/Export');?> </td>
|
473 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
474 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
475 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
476 |
-
</tr>
|
477 |
-
<tr>
|
478 |
-
<td><?php _e('Multiple Import methods');?></td>
|
479 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"><p><?php _e('Upload CSV only');?></p></td>
|
480 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
481 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
482 |
-
</tr>
|
483 |
-
<tr>
|
484 |
-
<td><?php _e('Choose delimiter');?></td>
|
485 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
486 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
487 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
488 |
-
</tr>
|
489 |
-
<tr>
|
490 |
-
<td><?php _e('Third-party plugin filter support');?></td>
|
491 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
|
492 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
493 |
-
<td><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
|
494 |
</tr>
|
495 |
</tbody>
|
496 |
</table>
|
47 |
<div class="wt-ier-modal-content">
|
48 |
<div class="wt-ier-resposive-table">
|
49 |
<table class="wt-ier-table">
|
|
|
50 |
<thead>
|
51 |
<tr class="wt-ier-top-tr">
|
52 |
<td></td>
|
61 |
</thead>
|
62 |
<tbody>
|
63 |
<tr>
|
64 |
+
<td><?php _e('Import and export');?></td>
|
65 |
+
<td>
|
66 |
+
<ul>
|
67 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Products');?></li>
|
68 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Reviews');?></li>
|
69 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Categories');?></li>
|
70 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Tags');?></li>
|
71 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Orders');?></li>
|
72 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Coupons');?></li>
|
73 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Subscriptions');?></li>
|
74 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('WordPress Users');?></li>
|
75 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('WooCommerce Customers');?></li>
|
76 |
+
</ul>
|
77 |
+
</td>
|
78 |
+
<td>
|
79 |
+
<ul>
|
80 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Products');?></li>
|
81 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Reviews');?></li>
|
82 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Categories');?></li>
|
83 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Tags');?></li>
|
84 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Orders');?></li>
|
85 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Coupons');?></li>
|
86 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Subscriptions');?></li>
|
87 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('WordPress Users');?></li>
|
88 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('WooCommerce Customers');?></li>
|
89 |
+
</ul>
|
90 |
+
</td>
|
91 |
<td>
|
92 |
+
<ul>
|
93 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Products');?></li>
|
94 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Reviews');?></li>
|
95 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Categories');?></li>
|
96 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Tags');?></li>
|
97 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Orders');?></li>
|
98 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Coupons');?></li>
|
99 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Subscriptions');?></li>
|
100 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WordPress Users');?></li>
|
101 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WooCommerce Customers');?></li>
|
102 |
</ul>
|
103 |
</td>
|
104 |
</tr>
|
105 |
<tr>
|
106 |
+
<td><?php _e('Supported product types');?></td>
|
107 |
+
<td>
|
108 |
+
<ul>
|
109 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Simple Products');?></li>
|
110 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Grouped Products');?></li>
|
111 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('External/Affiliate Products');?></li>
|
112 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Variable product');?></li>
|
113 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Simple subscription');?></li>
|
114 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Variable subscription');?></li>
|
115 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('WooCommerce Bookings');?></li>
|
116 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Custom Products');?></li>
|
117 |
+
</ul>
|
118 |
+
</td>
|
119 |
+
<td>
|
120 |
+
<ul>
|
121 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Simple Products');?></li>
|
122 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Grouped Products');?></li>
|
123 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('External/Affiliate Products');?></li>
|
124 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Variable product');?></li>
|
125 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Simple subscription');?></li>
|
126 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Variable subscription');?></li>
|
127 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WooCommerce Bookings');?></li>
|
128 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Custom Products');?></li>
|
129 |
+
</ul>
|
130 |
+
</td>
|
131 |
+
<td>
|
132 |
+
<ul>
|
133 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Simple Products');?></li>
|
134 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Grouped Products');?></li>
|
135 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('External/Affiliate Products');?></li>
|
136 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Variable product');?></li>
|
137 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Simple subscription');?></li>
|
138 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Variable subscription');?></li>
|
139 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WooCommerce Bookings');?></li>
|
140 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Custom Products');?></li>
|
141 |
+
</ul>
|
142 |
+
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
</tr>
|
144 |
+
<tr>
|
145 |
+
<td><?php _e('Supported file types');?></td>
|
146 |
+
<td>
|
147 |
+
<ul>
|
148 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('CSV');?></li>
|
149 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('XML');?></li>
|
150 |
+
</ul>
|
151 |
+
</td>
|
152 |
+
<td>
|
153 |
+
<ul>
|
154 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('CSV');?></li>
|
155 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('XML');?></li>
|
156 |
+
</ul>
|
157 |
+
</td>
|
158 |
+
<td>
|
159 |
+
<ul>
|
160 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('CSV');?></li>
|
161 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('XML');?></li>
|
162 |
+
</ul>
|
163 |
+
</td>
|
164 |
</tr>
|
165 |
+
<tr>
|
166 |
+
<td><?php _e('Supported import methods');?></td>
|
167 |
+
<td>
|
168 |
+
<ul>
|
169 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Local');?></li>
|
170 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('FTP/SFTP');?></li>
|
171 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('From URL');?></li>
|
172 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('From existing files');?></li>
|
173 |
+
</ul>
|
174 |
+
</td>
|
175 |
+
<td>
|
176 |
+
<ul>
|
177 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Local');?></li>
|
178 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('FTP/SFTP');?></li>
|
179 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From URL');?></li>
|
180 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From existing files');?></li>
|
181 |
+
</ul>
|
182 |
+
</td>
|
183 |
+
<td>
|
184 |
+
<ul>
|
185 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Local');?></li>
|
186 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('FTP/SFTP');?></li>
|
187 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From URL');?></li>
|
188 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From existing files');?></li>
|
189 |
+
</ul>
|
190 |
+
</td>
|
191 |
+
</tr>
|
192 |
+
<tr>
|
193 |
+
<td><?php _e('Automatic scheduled import & export');?></td>
|
194 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
195 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
196 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
197 |
+
</tr>
|
198 |
+
<tr>
|
199 |
+
<td><?php _e('Import & export custom fields ( metadata )');?></td>
|
200 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
201 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
202 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
203 |
+
</tr>
|
204 |
+
<tr>
|
205 |
+
<td><?php _e('Import & export hidden meta');?></td>
|
206 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
207 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
208 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
209 |
+
</tr>
|
210 |
+
<tr>
|
211 |
+
<td><?php _e('Bulk delete products');?></td>
|
212 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
213 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
214 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
215 |
+
</tr>
|
216 |
+
<tr>
|
217 |
+
<td><?php _e('Option to import products as new item during post id conflicts');?></td>
|
218 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
219 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
220 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
221 |
+
</tr>
|
222 |
+
<tr>
|
223 |
+
<td><?php _e('Export to FTP/SFTP');?></td>
|
224 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
225 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
226 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
227 |
+
</tr>
|
228 |
+
<tr>
|
229 |
+
<td><?php _e('Set CSV delimiter for export');?></td>
|
230 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
231 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
232 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
233 |
+
</tr>
|
234 |
+
<tr>
|
235 |
+
<td><?php _e('Export images as a separate zip');?></td>
|
236 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
237 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
238 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
239 |
+
</tr>
|
240 |
+
<tr>
|
241 |
+
<td><?php _e('Convert shortcodes to HTML on export');?></td>
|
242 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
243 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
244 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
245 |
+
</tr>
|
246 |
+
<tr>
|
247 |
+
<td><?php _e('Custom export filename');?></td>
|
248 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
249 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
250 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
251 |
</tr>
|
|
|
252 |
</tbody>
|
253 |
</table>
|
254 |
</div>
|
259 |
<div class="wt-ier-modal-content">
|
260 |
<div class="wt-ier-resposive-table">
|
261 |
<table class="wt-ier-table">
|
262 |
+
<thead>
|
263 |
+
<tr class="wt-ier-top-tr">
|
264 |
+
<td></td>
|
265 |
+
<td colspan="3"><span class="wt-ier-close">×</span></td>
|
266 |
+
</tr>
|
267 |
+
<tr>
|
268 |
+
<th><?php _e('Features');?></th>
|
269 |
+
<th><?php _e('Free');?></th>
|
270 |
+
<th><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/pre-icon.svg" class="wt-ier-pre-icon"><?php _e('Premium');?></th>
|
271 |
+
<th><?php _e('Import Export Suite');?></th>
|
272 |
+
</tr>
|
273 |
+
</thead>
|
274 |
+
<tbody>
|
275 |
+
<tr>
|
276 |
+
<td><?php _e('Import and export');?></td>
|
277 |
+
<td>
|
278 |
+
<ul>
|
279 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WordPress Users');?></li>
|
280 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WooCommerce Customers');?></li>
|
281 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Products');?></li>
|
282 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Reviews');?></li>
|
283 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Categories');?></li>
|
284 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Tags');?></li>
|
285 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Orders');?></li>
|
286 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Coupons');?></li>
|
287 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Subscriptions');?></li>
|
288 |
+
</ul>
|
289 |
+
</td>
|
290 |
+
<td>
|
291 |
+
<ul>
|
292 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WordPress Users');?></li>
|
293 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WooCommerce Customers');?></li>
|
294 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Products');?></li>
|
295 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Reviews');?></li>
|
296 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Categories');?></li>
|
297 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Tags');?></li>
|
298 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Orders');?></li>
|
299 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Coupons');?></li>
|
300 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Subscriptions');?></li>
|
301 |
+
</ul>
|
302 |
+
</td>
|
303 |
<td>
|
304 |
+
<ul>
|
305 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WordPress Users');?></li>
|
306 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WooCommerce Customers');?></li>
|
307 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Products');?></li>
|
308 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Reviews');?></li>
|
309 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Categories');?></li>
|
310 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Tags');?></li>
|
311 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Orders');?></li>
|
312 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Coupons');?></li>
|
313 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Subscriptions');?></li>
|
314 |
</ul>
|
315 |
</td>
|
316 |
+
</tr>
|
317 |
+
<tr>
|
318 |
+
<td><?php _e('Supported file types');?></td>
|
319 |
+
<td>
|
320 |
+
<ul>
|
321 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('CSV');?></li>
|
322 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('XML');?></li>
|
323 |
+
</ul>
|
324 |
+
</td>
|
325 |
+
<td>
|
326 |
+
<ul>
|
327 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('CSV');?></li>
|
328 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('XML');?></li>
|
329 |
+
</ul>
|
330 |
+
</td>
|
331 |
+
<td>
|
332 |
+
<ul>
|
333 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('CSV');?></li>
|
334 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('XML');?></li>
|
335 |
+
</ul>
|
336 |
+
</td>
|
337 |
</tr>
|
338 |
+
<tr>
|
339 |
+
<td><?php _e('Supported import methods');?></td>
|
340 |
+
<td>
|
341 |
+
<ul>
|
342 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Local');?></li>
|
343 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('FTP/SFTP');?></li>
|
344 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('From URL');?></li>
|
345 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('From existing files');?></li>
|
346 |
+
</ul>
|
347 |
+
</td>
|
348 |
+
<td>
|
349 |
+
<ul>
|
350 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Local');?></li>
|
351 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('FTP/SFTP');?></li>
|
352 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From URL');?></li>
|
353 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From existing files');?></li>
|
354 |
+
</ul>
|
355 |
+
</td>
|
356 |
+
<td>
|
357 |
+
<ul>
|
358 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Local');?></li>
|
359 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('FTP/SFTP');?></li>
|
360 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From URL');?></li>
|
361 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From existing files');?></li>
|
362 |
+
</ul>
|
363 |
+
</td>
|
364 |
+
</tr>
|
365 |
+
<tr>
|
366 |
+
<td><?php _e('Automatic scheduled import & export');?></td>
|
367 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
368 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
369 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
370 |
+
</tr>
|
371 |
+
<tr>
|
372 |
+
<td><?php _e('Import & export custom fields ( metadata )');?></td>
|
373 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
374 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
375 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
376 |
+
</tr>
|
377 |
+
<tr>
|
378 |
+
<td><?php _e('Import & export hidden meta');?></td>
|
379 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
380 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
381 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
382 |
+
</tr>
|
383 |
+
<tr>
|
384 |
+
<td><?php _e('Option to email new users on import');?></td>
|
385 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
386 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
387 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
388 |
+
</tr>
|
389 |
+
<tr>
|
390 |
+
<td><?php _e('Export to FTP/SFTP');?></td>
|
391 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
392 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
393 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
394 |
+
</tr>
|
395 |
+
<tr>
|
396 |
+
<td><?php _e('Set CSV delimiter for export');?></td>
|
397 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
398 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
399 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
400 |
+
</tr>
|
401 |
+
<tr>
|
402 |
+
<td><?php _e('Custom export filename');?></td>
|
403 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
404 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
405 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
</tr>
|
|
|
407 |
</tbody>
|
408 |
</table>
|
409 |
</div>
|
414 |
<div class="wt-ier-modal-content">
|
415 |
<div class="wt-ier-resposive-table">
|
416 |
<table class="wt-ier-table">
|
417 |
+
<thead>
|
418 |
+
<tr class="wt-ier-top-tr">
|
419 |
+
<td></td>
|
420 |
+
<td colspan="3"><span class="wt-ier-close">×</span></td>
|
421 |
+
</tr>
|
422 |
+
<tr>
|
423 |
+
<th><?php _e('Features');?></th>
|
424 |
+
<th><?php _e('Free');?></th>
|
425 |
+
<th><img src="<?php echo WT_P_IEW_PLUGIN_URL; ?>assets/images/upgrade/pre-icon.svg" class="wt-ier-pre-icon"><?php _e('Premium');?></th>
|
426 |
+
<th><?php _e('Import Export Suite');?></th>
|
427 |
+
</tr>
|
428 |
+
</thead>
|
429 |
+
<tbody>
|
430 |
+
<tr>
|
431 |
+
<td><?php _e('Import and export');?></td>
|
432 |
+
<td>
|
433 |
+
<ul>
|
434 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Orders');?></li>
|
435 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Coupons');?></li>
|
436 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Subscriptions');?></li>
|
437 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Products');?></li>
|
438 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Reviews');?></li>
|
439 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Categories');?></li>
|
440 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Tags');?></li>
|
441 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('WordPress Users');?></li>
|
442 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('WooCommerce Customers');?></li>
|
443 |
+
</ul>
|
444 |
+
</td>
|
445 |
+
<td>
|
446 |
+
<ul>
|
447 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Orders');?></li>
|
448 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Coupons');?></li>
|
449 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Subscriptions');?></li>
|
450 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Products');?></li>
|
451 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Reviews');?></li>
|
452 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Categories');?></li>
|
453 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('Product Tags');?></li>
|
454 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('WordPress Users');?></li>
|
455 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('WooCommerce Customers');?></li>
|
456 |
+
</ul>
|
457 |
+
</td>
|
458 |
<td>
|
459 |
+
<ul>
|
460 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Orders');?></li>
|
461 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Coupons');?></li>
|
462 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Subscriptions');?></li>
|
463 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Products');?></li>
|
464 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Reviews');?></li>
|
465 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Categories');?></li>
|
466 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Product Tags');?></li>
|
467 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WordPress Users');?></li>
|
468 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('WooCommerce Customers');?></li>
|
469 |
</ul>
|
470 |
</td>
|
471 |
+
</tr>
|
472 |
+
<tr>
|
473 |
+
<td><?php _e('Supported file types');?></td>
|
474 |
+
<td>
|
475 |
+
<ul>
|
476 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('CSV');?></li>
|
477 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('XML');?></li>
|
478 |
+
</ul>
|
479 |
+
</td>
|
480 |
+
<td>
|
481 |
+
<ul>
|
482 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('CSV');?></li>
|
483 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('XML');?></li>
|
484 |
+
</ul>
|
485 |
+
</td>
|
486 |
+
<td>
|
487 |
+
<ul>
|
488 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('CSV');?></li>
|
489 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('XML');?></li>
|
490 |
+
</ul>
|
491 |
+
</td>
|
492 |
</tr>
|
493 |
+
<tr>
|
494 |
+
<td><?php _e('Supported import methods');?></td>
|
495 |
+
<td>
|
496 |
+
<ul>
|
497 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Local');?></li>
|
498 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('FTP/SFTP');?></li>
|
499 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('From URL');?></li>
|
500 |
+
<li><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span> <?php _e('From existing files');?></li>
|
501 |
+
</ul>
|
502 |
+
</td>
|
503 |
+
<td>
|
504 |
+
<ul>
|
505 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Local');?></li>
|
506 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('FTP/SFTP');?></li>
|
507 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From URL');?></li>
|
508 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From existing files');?></li>
|
509 |
+
</ul>
|
510 |
+
</td>
|
511 |
+
<td>
|
512 |
+
<ul>
|
513 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('Local');?></li>
|
514 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('FTP/SFTP');?></li>
|
515 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From URL');?></li>
|
516 |
+
<li><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span> <?php _e('From existing files');?></li>
|
517 |
+
</ul>
|
518 |
+
</td>
|
519 |
+
</tr>
|
520 |
+
<tr>
|
521 |
+
<td><?php _e('Automatic scheduled import & export');?></td>
|
522 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
523 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
524 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
525 |
+
</tr>
|
526 |
+
<tr>
|
527 |
+
<td><?php _e('Import & export custom fields ( metadata )');?></td>
|
528 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
529 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
530 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
531 |
+
</tr>
|
532 |
+
<tr>
|
533 |
+
<td><?php _e('Import & export hidden meta');?></td>
|
534 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
535 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
536 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
537 |
+
</tr>
|
538 |
+
<tr>
|
539 |
+
<td><?php _e('Email customers on order status update');?></td>
|
540 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
541 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
542 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
543 |
+
</tr>
|
544 |
+
<tr>
|
545 |
+
<td><?php _e('Create customers on order import');?></td>
|
546 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
547 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
548 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
549 |
+
</tr>
|
550 |
+
<tr>
|
551 |
+
<td><?php _e('Bulk delete orders/coupons/subcriptions');?></td>
|
552 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
553 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
554 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
555 |
+
</tr>
|
556 |
+
<tr>
|
557 |
+
<td><?php _e('Export to FTP/SFTP');?></td>
|
558 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
559 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
560 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
561 |
+
</tr>
|
562 |
+
<tr>
|
563 |
+
<td><?php _e('Set CSV delimiter for export');?></td>
|
564 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
565 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
566 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
567 |
+
</tr>
|
568 |
+
<tr>
|
569 |
+
<td><?php _e('Custom export filename');?></td>
|
570 |
+
<td><span style="color:red; line-height:inherit;" class="dashicons dashicons-dismiss"></span></td>
|
571 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
572 |
+
<td><span style="color:#36D144; line-height:inherit;" class="dashicons dashicons-yes-alt"></span></td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
</tr>
|
574 |
</tbody>
|
575 |
</table>
|
includes/class-wt-import-export-for-woo.php
CHANGED
@@ -80,7 +80,7 @@ class Wt_Import_Export_For_Woo_Basic {
|
|
80 |
if ( defined( 'WT_P_IEW_VERSION' ) ) {
|
81 |
$this->version = WT_P_IEW_VERSION;
|
82 |
} else {
|
83 |
-
$this->version = '2.
|
84 |
}
|
85 |
$this->plugin_name = 'wt-import-export-for-woo-basic';
|
86 |
|
80 |
if ( defined( 'WT_P_IEW_VERSION' ) ) {
|
81 |
$this->version = WT_P_IEW_VERSION;
|
82 |
} else {
|
83 |
+
$this->version = '2.2.0';
|
84 |
}
|
85 |
$this->plugin_name = 'wt-import-export-for-woo-basic';
|
86 |
|
product-import-export-for-woo.php
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name: Product
|
4 |
Plugin URI: https://wordpress.org/plugins/product-import-export-for-woo/
|
5 |
Description: Import and Export Products From and To your WooCommerce Store.
|
6 |
Author: WebToffee
|
7 |
Author URI: https://www.webtoffee.com/product/product-import-export-woocommerce/
|
8 |
-
Version: 2.
|
9 |
-
WC tested up to: 6.3
|
10 |
License: GPLv3
|
11 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
12 |
Text Domain: product-import-export-for-woo
|
13 |
Domain Path: /languages
|
|
|
14 |
Requires at least: 3.0
|
15 |
Requires PHP: 5.6
|
16 |
*/
|
@@ -46,7 +46,7 @@ if ( !defined( 'WT_IEW_DEBUG_BASIC_TROUBLESHOOT' ) ) {
|
|
46 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
47 |
* Rename this for your plugin and update it as you release new versions.
|
48 |
*/
|
49 |
-
define( 'WT_P_IEW_VERSION', '2.
|
50 |
|
51 |
/**
|
52 |
* The code that runs during plugin activation.
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: Product Import Export for WooCommerce
|
4 |
Plugin URI: https://wordpress.org/plugins/product-import-export-for-woo/
|
5 |
Description: Import and Export Products From and To your WooCommerce Store.
|
6 |
Author: WebToffee
|
7 |
Author URI: https://www.webtoffee.com/product/product-import-export-woocommerce/
|
8 |
+
Version: 2.2.0
|
|
|
9 |
License: GPLv3
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
Text Domain: product-import-export-for-woo
|
12 |
Domain Path: /languages
|
13 |
+
WC tested up to: 6.4
|
14 |
Requires at least: 3.0
|
15 |
Requires PHP: 5.6
|
16 |
*/
|
46 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
47 |
* Rename this for your plugin and update it as you release new versions.
|
48 |
*/
|
49 |
+
define( 'WT_P_IEW_VERSION', '2.2.0' );
|
50 |
|
51 |
/**
|
52 |
* The code that runs during plugin activation.
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: product export, product import, CSV import export, woocommerce, CSV, produ
|
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 2.
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -56,7 +56,7 @@ With this plugin, you can export and import WooCommerce products to and from a C
|
|
56 |
* <strong>Save frequently used import/export configurations</strong> as templates and use the template for future imports and exports.
|
57 |
* The plugin <strong>stores all the past imports and exports</strong> and <strong>lets you re-run</strong> them when needed.
|
58 |
* <strong>Easy debugging:</strong> View and download import log for debugging purpose.
|
59 |
-
* Tested OK with WooCommerce 6.
|
60 |
|
61 |
###COMPATIBLE PLUGINS###
|
62 |
|
@@ -240,6 +240,9 @@ Yes, you can import grouped, affiliate/external products in addition to simple p
|
|
240 |
|
241 |
== CHANGELOG ==
|
242 |
|
|
|
|
|
|
|
243 |
= 2.1.9 2022-04-11 =
|
244 |
* WC 6.3 Tested OK.
|
245 |
* General settings - Option to Include BOM(Byte order mark) in export file to have better special character support.
|
@@ -598,7 +601,6 @@ Yes, you can import grouped, affiliate/external products in addition to simple p
|
|
598 |
|
599 |
== Upgrade Notice ==
|
600 |
|
601 |
-
= 2.
|
602 |
-
* WC 6.
|
603 |
-
*
|
604 |
-
* Fix: Category and Tag name contains & is exported to the CSV as "&"
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 2.2.0
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
56 |
* <strong>Save frequently used import/export configurations</strong> as templates and use the template for future imports and exports.
|
57 |
* The plugin <strong>stores all the past imports and exports</strong> and <strong>lets you re-run</strong> them when needed.
|
58 |
* <strong>Easy debugging:</strong> View and download import log for debugging purpose.
|
59 |
+
* Tested OK with WooCommerce 6.4
|
60 |
|
61 |
###COMPATIBLE PLUGINS###
|
62 |
|
240 |
|
241 |
== CHANGELOG ==
|
242 |
|
243 |
+
= 2.2.0 2022-05-12 =
|
244 |
+
* WC 6.4 Tested OK.
|
245 |
+
* Enhancement: Bulk delete import logs.
|
246 |
= 2.1.9 2022-04-11 =
|
247 |
* WC 6.3 Tested OK.
|
248 |
* General settings - Option to Include BOM(Byte order mark) in export file to have better special character support.
|
601 |
|
602 |
== Upgrade Notice ==
|
603 |
|
604 |
+
= 2.2.0 =
|
605 |
+
* WC 6.4 Tested OK.
|
606 |
+
* Enhancement: Bulk delete import logs.
|
|