Order Export & Order Import for WooCommerce - Version 2.2.3

Version Description

2022-05-09 = * WC 6.4 Tested OK. * Enhancement: Bulk delete import logs.

Download this release

Release Info

Developer webtoffee
Plugin Icon 128x128 Order Export & Order Import for WooCommerce
Version 2.2.3
Comparing to
See all releases

Code changes from version 2.2.2 to 2.2.3

admin/css/wt-import-export-for-woo-admin.css CHANGED
@@ -977,7 +977,7 @@ ul.wt-ierpro-newfeat li {
977
  }
978
  .wt-ier-table tr td li{
979
  text-align: left;
980
- list-style: inside;
981
  }
982
 
983
  @media (min-width: 992px){
977
  }
978
  .wt-ier-table tr td li{
979
  text-align: left;
980
+ list-style: none;
981
  }
982
 
983
  @media (min-width: 992px){
admin/modules/history/assets/js/main.js CHANGED
@@ -185,6 +185,24 @@ var wt_iew_basic_history=(function( $ ) {
185
  }
186
  }
187
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
  }
189
  }
190
  return wt_iew_basic_history;
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
  }
208
  return wt_iew_basic_history;
admin/modules/history/history.php CHANGED
@@ -250,20 +250,21 @@ class Wt_Import_Export_For_Woo_Basic_History
250
  {
251
  if(Wt_Iew_Sh::check_write_access(WT_IEW_PLUGIN_ID_BASIC))
252
  {
253
- $log_file_name=(isset($_GET['wt_iew_log_file']) ? sanitize_text_field($_GET['wt_iew_log_file']) : '');
254
- if($log_file_name!="")
255
- {
256
- $ext_arr=explode(".", $log_file_name);
257
- $ext=end($ext_arr);
258
- if($ext=='log')
259
- {
260
- $log_file_path=Wt_Import_Export_For_Woo_Basic_Log::get_file_path($log_file_name);
261
- if(file_exists($log_file_path) && is_file($log_file_path))
262
- {
263
- @unlink($log_file_path);
 
264
  }
265
  }
266
- }
267
  }
268
  }
269
 
250
  {
251
  if(Wt_Iew_Sh::check_write_access(WT_IEW_PLUGIN_ID_BASIC))
252
  {
253
+ $log_file_arr = isset($_GET['wt_iew_log_file']) ? explode(",", $_GET['wt_iew_log_file']) : array();
254
+ $log_file_arr = Wt_Iew_Sh::sanitize_item($log_file_arr, 'text_arr');
255
+
256
+ if (is_array($log_file_arr)) {
257
+ foreach ($log_file_arr as $log_file_name) {
258
+ $ext_arr = explode(".", $log_file_name);
259
+ $ext = end($ext_arr);
260
+ if ($ext == 'log') {
261
+ $log_file_path = Wt_Import_Export_For_Woo_Basic_Log::get_file_path($log_file_name);
262
+ if (file_exists($log_file_path) && is_file($log_file_path)) {
263
+ @unlink($log_file_path);
264
+ }
265
  }
266
  }
267
+ }
268
  }
269
  }
270
 
admin/modules/history/views/_log_list.php CHANGED
@@ -37,20 +37,37 @@ if(isset($_GET['wt_iew_delete_log']))
37
  $log_files = $indexed_log_files;
38
 
39
  ?>
 
 
 
 
 
 
 
40
  <table class="wp-list-table widefat fixed striped history_list_tb log_list_tb">
41
  <thead>
42
  <tr>
 
 
 
 
43
  <th class="log_file_name_col"><?php _e("File"); ?></th>
44
  <th><?php _e("Actions"); ?></th>
45
  </tr>
46
  </thead>
47
  <tbody>
48
  <?php
 
49
  foreach($log_files as $log_file)
50
  {
 
51
  $file_name=basename($log_file);
52
  ?>
53
  <tr>
 
 
 
 
54
  <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>
55
  <td>
56
  <a class="wt_iew_delete_log" data-href="<?php echo str_replace('_log_file_', $file_name, $delete_url);?>"><?php _e('Delete'); ?></a>
@@ -67,7 +84,11 @@ if(isset($_GET['wt_iew_delete_log']))
67
  }else
68
  {
69
  ?>
70
- <h4 class="wt_iew_history_no_records"><?php _e("No logs found."); ?></h4>
 
 
 
 
71
  <?php
72
  }
73
  ?>
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/modules/order/export/export.php CHANGED
@@ -25,7 +25,6 @@ class Wt_Import_Export_For_Woo_Basic_Order_Export {
25
 
26
  $export_columns = $this->parent_module->get_selected_column_names();
27
 
28
- $this->line_item_meta = self::get_all_line_item_metakeys();
29
  if (is_plugin_active('print-invoices-packing-slip-labels-for-woocommerce/print-invoices-packing-slip-labels-for-woocommerce.php')):
30
  $this->is_wt_invoice_active = true;
31
  endif;
@@ -44,22 +43,15 @@ class Wt_Import_Export_For_Woo_Basic_Order_Export {
44
 
45
  if ($this->export_to_separate_columns) {
46
  for ($i = 1; $i <= $max_line_items; $i++) {
47
- foreach ($this->line_item_meta as $meta_value) {
48
- $new_val = str_replace("_", " ", $meta_value);
49
  $export_columns["line_item_{$i}_name"] = "Product Item {$i} Name";
50
  $export_columns["line_item_{$i}_product_id"] = "Product Item {$i} id";
51
  $export_columns["line_item_{$i}_sku"] = "Product Item {$i} SKU";
52
  $export_columns["line_item_{$i}_quantity"] = "Product Item {$i} Quantity";
53
  $export_columns["line_item_{$i}_total"] = "Product Item {$i} Total";
54
  $export_columns["line_item_{$i}_subtotal"] = "Product Item {$i} Subtotal";
55
- if (in_array($meta_value, array("_product_id", "_qty", "_variation_id", "_line_total", "_line_subtotal", "_tax_class", "_line_tax", "_line_tax_data", "_line_subtotal_tax"))) {
56
- continue;
57
- } else {
58
- $export_columns["line_item_{$i}_$meta_value"] = "Product Item {$i} $new_val";
59
- }
60
- }
61
  }
62
  }
 
63
  if ($this->export_to_separate_rows) {
64
  $export_columns = $this->wt_line_item_separate_row_csv_header($export_columns);
65
  }
@@ -797,26 +789,18 @@ class Wt_Import_Export_For_Woo_Basic_Order_Export {
797
  }
798
 
799
  if ($this->export_to_separate_columns) {
800
- $line_item_values = self::get_all_metakeys_and_values($order);
801
- $this->line_item_meta = self::get_all_line_item_metakeys();
802
- $max_line_items = $this->line_items_max_count;
803
  for ($i = 1; $i <= $max_line_items; $i++) {
804
- $line_item_array = explode('|', $order_export_data["line_item_{$i}"]);
805
- foreach ($this->line_item_meta as $meta_val) {
806
- $order_export_data["line_item_{$i}_name"] = !empty($line_item_array[0]) ? substr($line_item_array[0], strpos($line_item_array[0], ':') + 1) : '';
807
- $order_export_data["line_item_{$i}_product_id"] = !empty($line_item_array[1]) ? substr($line_item_array[1], strpos($line_item_array[1], ':') + 1) : '';
808
- $order_export_data["line_item_{$i}_sku"] = !empty($line_item_array[2]) ? substr($line_item_array[2], strpos($line_item_array[2], ':') + 1) : '';
809
- $order_export_data["line_item_{$i}_quantity"] = !empty($line_item_array[3]) ? substr($line_item_array[3], strpos($line_item_array[3], ':') + 1) : '';
810
- $order_export_data["line_item_{$i}_total"] = !empty($line_item_array[4]) ? substr($line_item_array[4], strpos($line_item_array[4], ':') + 1) : '';
811
- $order_export_data["line_item_{$i}_subtotal"] = !empty($line_item_array[5]) ? substr($line_item_array[5], strpos($line_item_array[5], ':') + 1) : '';
812
- if (in_array($meta_val, array("_product_id", "_qty", "_variation_id", "_line_total", "_line_subtotal", "_tax_class", "_line_tax", "_line_tax_data", "_line_subtotal_tax"))) {
813
- continue;
814
- } else {
815
- $order_export_data["line_item_{$i}_$meta_val"] = !empty($line_item_values[$i][$meta_val]) ? $line_item_values[$i][$meta_val] : '';
816
- }
817
- }
818
  }
819
- }
 
820
  $order_data_filter_args = array('max_line_items' => $max_line_items);
821
 
822
  if ($this->export_to_separate_rows) {
25
 
26
  $export_columns = $this->parent_module->get_selected_column_names();
27
 
 
28
  if (is_plugin_active('print-invoices-packing-slip-labels-for-woocommerce/print-invoices-packing-slip-labels-for-woocommerce.php')):
29
  $this->is_wt_invoice_active = true;
30
  endif;
43
 
44
  if ($this->export_to_separate_columns) {
45
  for ($i = 1; $i <= $max_line_items; $i++) {
 
 
46
  $export_columns["line_item_{$i}_name"] = "Product Item {$i} Name";
47
  $export_columns["line_item_{$i}_product_id"] = "Product Item {$i} id";
48
  $export_columns["line_item_{$i}_sku"] = "Product Item {$i} SKU";
49
  $export_columns["line_item_{$i}_quantity"] = "Product Item {$i} Quantity";
50
  $export_columns["line_item_{$i}_total"] = "Product Item {$i} Total";
51
  $export_columns["line_item_{$i}_subtotal"] = "Product Item {$i} Subtotal";
 
 
 
 
 
 
52
  }
53
  }
54
+
55
  if ($this->export_to_separate_rows) {
56
  $export_columns = $this->wt_line_item_separate_row_csv_header($export_columns);
57
  }
789
  }
790
 
791
  if ($this->export_to_separate_columns) {
792
+
 
 
793
  for ($i = 1; $i <= $max_line_items; $i++) {
794
+
795
+ $order_export_data["line_item_{$i}_name"] = !empty($line_items[$i-1]['name']) ? $line_items[$i-1]['name'] : '';
796
+ $order_export_data["line_item_{$i}_product_id"] = !empty($line_items[$i-1]['product_id']) ? $line_items[$i-1]['product_id'] : '';
797
+ $order_export_data["line_item_{$i}_sku"] = !empty($line_items[$i-1]['sku']) ? $line_items[$i-1]['sku'] : '';
798
+ $order_export_data["line_item_{$i}_quantity"] = !empty($line_items[$i-1]['quantity']) ? $line_items[$i-1]['quantity'] : '';
799
+ $order_export_data["line_item_{$i}_total"] = !empty($line_items[$i-1]['total']) ? $line_items[$i-1]['total'] : '';
800
+ $order_export_data["line_item_{$i}_subtotal"] = !empty($line_items[$i-1]['sub_total']) ? $line_items[$i-1]['sub_total'] : '';
 
 
 
 
 
 
 
801
  }
802
+ }
803
+
804
  $order_data_filter_args = array('max_line_items' => $max_line_items);
805
 
806
  if ($this->export_to_separate_rows) {
admin/modules/order/order.php CHANGED
@@ -500,7 +500,7 @@ class Wt_Import_Export_For_Woo_Basic_Order {
500
  $out['ord_link_using_sku']['help_text'] = sprintf(
501
  /* translators: %s: Product Import Export for WooCommerce plugin URL */
502
  __( 'If you do not already have corresponding products added in your store, we recommend that you import them first using <a href="%s" target="_blank">Product Import Export for WooCommerce</a>.' ),
503
- admin_url('plugin-install.php?s=product import export for woocommerce by webtoffee&tab=search&type=term')
504
  );
505
  }
506
 
500
  $out['ord_link_using_sku']['help_text'] = sprintf(
501
  /* translators: %s: Product Import Export for WooCommerce plugin URL */
502
  __( 'If you do not already have corresponding products added in your store, we recommend that you import them first using <a href="%s" target="_blank">Product Import Export for WooCommerce</a>.' ),
503
+ admin_url('plugin-install.php?tab=plugin-information&plugin=product-import-export-for-woo')
504
  );
505
  }
506
 
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 products');?></td>
66
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
67
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  <td>
69
- <ul>
70
- <li><?php _e('Products');?></li>
71
- <li><?php _e('Reviews');?></li>
72
- <li><?php _e('Orders');?></li>
73
- <li><?php _e('Coupons');?></li>
74
- <li><?php _e('Subscriptions');?></li>
75
- <li><?php _e('Users');?></li>
 
 
 
76
  </ul>
77
  </td>
78
  </tr>
79
  <tr>
80
- <td><?php _e('Export and import with product images');?></td>
81
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
82
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
83
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
84
- </tr>
85
- <tr>
86
- <td><?php _e('Batch import/export');?></td>
87
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
88
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
89
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
90
- </tr>
91
- <tr>
92
- <td><?php _e('Quick import/export');?></td>
93
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
94
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
95
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
96
- </tr>
97
- <tr>
98
- <td><?php _e('Bulk product update');?></td>
99
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
100
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
101
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
102
- </tr>
103
- <tr>
104
- <td><?php _e('Advanced import/export filters');?></td>
105
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"><p><?php _e('Limited');?></p></td>
106
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
107
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
108
- </tr>
109
- <tr>
110
- <td><?php _e('Option to save a template for future import/exports');?></td>
111
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
112
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
113
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
114
- </tr>
115
- <tr>
116
- <td><?php _e('Export/Import mapping');?></td>
117
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
118
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
119
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
124
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
125
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
130
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
131
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
136
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
137
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"><p><?php _e('Only supports CSV');?></p></td>
142
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
143
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
148
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
149
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
154
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
155
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
160
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
161
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
166
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
167
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
172
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
173
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
178
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
179
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
184
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
185
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
190
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
191
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
192
  </tr>
193
- <tr>
194
- <td><?php _e('Import/Export Product ratings');?></td>
195
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
196
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
197
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  </tr>
199
- <tr>
200
- <td><?php _e('Import/export products reviews');?></td>
201
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
202
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
203
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
- <thead>
218
- <tr class="wt-ier-top-tr">
219
- <td></td>
220
- <td colspan="3"><span class="wt-ier-close">&times;</span></td>
221
- </tr>
222
- <tr>
223
- <th><?php _e('Features');?></th>
224
- <th><?php _e('Free');?></th>
225
- <th><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/pre-icon.svg" class="wt-ier-pre-icon"><?php _e('Premium');?></th>
226
- <th><?php _e('Import Export Suite');?></th>
227
- </tr>
228
- </thead>
229
- <tbody>
230
- <tr>
231
- <td><?php _e('Import/Export Users');?></td>
232
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
233
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  <td>
235
- <ul>
236
- <li><?php _e('Products');?></li>
237
- <li><?php _e('Reviews');?></li>
238
- <li><?php _e('Orders');?></li>
239
- <li><?php _e('Coupons');?></li>
240
- <li><?php _e('Subscriptions');?></li>
241
- <li><?php _e('Users');?></li>
 
 
 
242
  </ul>
243
  </td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  </tr>
245
- <tr>
246
- <td><?php _e('Import/Export customers');?></td>
247
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
248
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
249
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
250
- </tr>
251
- <tr>
252
- <td><?php _e('Retain user password on Import/Export');?></td>
253
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
254
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
255
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
256
- </tr>
257
- <tr>
258
- <td><?php _e('Bulk update data');?></td>
259
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
260
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
261
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
262
- </tr>
263
- <tr>
264
- <td><?php _e('Evaluation fields');?></td>
265
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
266
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
267
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
268
- </tr>
269
- <tr>
270
- <td><?php _e('Advanced filters');?></td>
271
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"><p><?php _e('Limited options');?></p></td>
272
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
273
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
274
- </tr>
275
- <tr>
276
- <td><?php _e('Quick Import/Export');?></td>
277
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
278
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
279
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
280
- </tr>
281
- <tr>
282
- <td><?php _e('Import/Export with pre-saved template');?></td>
283
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
284
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
285
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
286
- </tr>
287
- <tr>
288
- <td><?php _e('View Import/Export history');?></td>
289
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
290
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
291
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
292
- </tr>
293
- <tr>
294
- <td><?php _e('View debug log');?></td>
295
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
296
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
297
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
298
- </tr>
299
- <tr>
300
- <td><?php _e('Batch Import/Export');?></td>
301
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
302
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
303
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
304
- </tr>
305
- <tr>
306
- <td><?php _e('Customer Notification via email');?></td>
307
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
308
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
309
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
310
- </tr>
311
- <tr>
312
- <td><?php _e('Supports multiple file formats');?></td>
313
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"><p><?php _e('CSV only');?></p></td>
314
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
315
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
320
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
321
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
326
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
327
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
332
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
333
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
338
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
339
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
344
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
345
- <td><img src="<?php echo WT_O_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
- <thead>
360
- <tr class="wt-ier-top-tr">
361
- <td></td>
362
- <td colspan="3"><span class="wt-ier-close">&times;</span></td>
363
- </tr>
364
- <tr>
365
- <th><?php _e('Features');?></th>
366
- <th><?php _e('Free');?></th>
367
- <th><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/pre-icon.svg" class="wt-ier-pre-icon"><?php _e('Premium');?></th>
368
- <th><?php _e('Import Export Suite');?></th>
369
- </tr>
370
- </thead>
371
- <tbody>
372
- <tr>
373
- <td><?php _e('Export and Import orders');?> </td>
374
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
375
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376
  <td>
377
- <ul>
378
- <li><?php _e('Products');?></li>
379
- <li><?php _e('Reviews');?></li>
380
- <li><?php _e('Orders');?></li>
381
- <li><?php _e('Coupons');?></li>
382
- <li><?php _e('Subscriptions');?></li>
383
- <li><?php _e('Users');?></li>
 
 
 
384
  </ul>
385
  </td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
386
  </tr>
387
- <tr>
388
- <td><?php _e('Export and Import Coupons');?> </td>
389
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
390
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
391
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
392
- </tr>
393
- <tr>
394
- <td><?php _e('Batch Import/Export');?></td>
395
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
396
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
397
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
398
- </tr>
399
- <tr>
400
- <td><?php _e('Quick Import/Export');?></td>
401
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
402
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
403
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
404
- </tr>
405
- <tr>
406
- <td><?php _e('Easy Import/export with pre-saved template');?></td>
407
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
408
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
409
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
410
- </tr>
411
- <tr>
412
- <td><?php _e('Export/Import column mapping');?></td>
413
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
414
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
415
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
416
- </tr>
417
- <tr>
418
- <td><?php _e('Bulk update of data');?></td>
419
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
420
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
421
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
422
- </tr>
423
- <tr>
424
- <td><?php _e('Support evaluation fields');?></td>
425
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
426
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
427
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
428
- </tr>
429
- <tr>
430
- <td><?php _e('View debug logs');?></td>
431
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
432
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
433
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
434
- </tr>
435
- <tr>
436
- <td><?php _e('Import/Export history');?></td>
437
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
438
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
439
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
440
- </tr>
441
- <tr>
442
- <td><?php _e('Advanced filters');?></td>
443
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"><p><?php _e('Limited');?></p></td>
444
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
445
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
446
- </tr>
447
- <tr>
448
- <td><?php _e('Supports multiple file formats');?></td>
449
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"><p><?php _e('CSV only');?></p></td>
450
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
451
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
452
- </tr>
453
- <tr>
454
- <td><?php _e('Export/Import subscription orders');?> </td>
455
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
456
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
457
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
458
- </tr>
459
- <tr>
460
- <td><?php _e('Import and Export via FTP/SFTP');?></td>
461
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
462
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
463
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
464
- </tr>
465
- <tr>
466
- <td><?php _e('Scheduled automatic Import/Export using Cron job');?></td>
467
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
468
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
469
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
474
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
475
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"><p><?php _e('Upload CSV only');?></p></td>
480
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
481
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
486
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
487
- <td><img src="<?php echo WT_O_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_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/no.svg"></td>
492
- <td><img src="<?php echo WT_O_IEW_PLUGIN_URL; ?>assets/images/upgrade/yes.svg"></td>
493
- <td><img src="<?php echo WT_O_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">&times;</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_O_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">&times;</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_O_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_O_IEW_VERSION' ) ) {
81
  $this->version = WT_O_IEW_VERSION;
82
  } else {
83
- $this->version = '2.2.2';
84
  }
85
  $this->plugin_name = 'wt-import-export-for-woo-basic';
86
 
80
  if ( defined( 'WT_O_IEW_VERSION' ) ) {
81
  $this->version = WT_O_IEW_VERSION;
82
  } else {
83
+ $this->version = '2.2.3';
84
  }
85
  $this->plugin_name = 'wt-import-export-for-woo-basic';
86
 
order-import-export-for-woocommerce.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
  /*
3
  *
4
- Plugin Name: Order / Coupon / Subscription Export Import Plugin for WooCommerce (BASIC)
5
  Plugin URI: https://wordpress.org/plugins/order-import-export-for-woocommerce/
6
  Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
7
  Author: WebToffee
8
  Author URI: https://www.webtoffee.com/product/woocommerce-order-coupon-subscription-export-import/
9
- Version: 2.2.2
10
  Text Domain: order-import-export-for-woocommerce
11
  Domain Path: /languages
12
  Requires at least: 3.0
13
  Requires PHP: 5.6
14
- WC tested up to: 6.3
15
  License: GPLv3
16
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
17
  */
@@ -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_O_IEW_VERSION', '2.2.2' );
52
 
53
  /**
54
  * The code that runs during plugin activation.
1
  <?php
2
  /*
3
  *
4
+ Plugin Name: Order Export & Order Import for WooCommerce
5
  Plugin URI: https://wordpress.org/plugins/order-import-export-for-woocommerce/
6
  Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
7
  Author: WebToffee
8
  Author URI: https://www.webtoffee.com/product/woocommerce-order-coupon-subscription-export-import/
9
+ Version: 2.2.3
10
  Text Domain: order-import-export-for-woocommerce
11
  Domain Path: /languages
12
  Requires at least: 3.0
13
  Requires PHP: 5.6
14
+ WC tested up to: 6.4
15
  License: GPLv3
16
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
17
  */
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_O_IEW_VERSION', '2.2.3' );
52
 
53
  /**
54
  * The code that runs during plugin activation.
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: order export, woocommerce, order, export, csv, order import, woocommerce e
5
  Requires at least: 3.0.1
6
  Tested up to: 5.9
7
  Requires PHP: 5.6
8
- Stable tag: 2.2.2
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -28,7 +28,7 @@ The following are functionalities offered by the basic version of the plugin.
28
  &#128312; Bulk update WooCommerce orders and coupons.
29
  &#128312; Compatible with YITH WooCommerce Order Tracking plugin.
30
  &#128312; Supports various export filters (order status, product, coupon, customer, date range)
31
- &#128312; Tested OK with WooCommerce 6.3
32
  &#128312; Tested OK with WP 5.9
33
  &#128312; Tested OK with PHP 8.0
34
 
@@ -228,6 +228,9 @@ Yes.
228
 
229
  == Changelog ==
230
 
 
 
 
231
  = 2.2.2 2022-04-05 =
232
  * Enhancement: Option to - Update stock status and sales count of products upon order import.
233
  * Enhancement: Compatibility with WooCommerce shipment tracking and Advanced Shipment Tracking for WooCommerce.
@@ -499,6 +502,6 @@ Yes.
499
 
500
  == Upgrade Notice ==
501
 
502
- = 2.2.2 =
503
- * Enhancement: Option to - Update stock status and sales count of products upon order import.
504
- * Enhancement: Compatibility with WooCommerce shipment tracking and Advanced Shipment Tracking for WooCommerce.
5
  Requires at least: 3.0.1
6
  Tested up to: 5.9
7
  Requires PHP: 5.6
8
+ Stable tag: 2.2.3
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
28
  &#128312; Bulk update WooCommerce orders and coupons.
29
  &#128312; Compatible with YITH WooCommerce Order Tracking plugin.
30
  &#128312; Supports various export filters (order status, product, coupon, customer, date range)
31
+ &#128312; Tested OK with WooCommerce 6.4
32
  &#128312; Tested OK with WP 5.9
33
  &#128312; Tested OK with PHP 8.0
34
 
228
 
229
  == Changelog ==
230
 
231
+ = 2.2.3 2022-05-09 =
232
+ * WC 6.4 Tested OK.
233
+ * Enhancement: Bulk delete import logs.
234
  = 2.2.2 2022-04-05 =
235
  * Enhancement: Option to - Update stock status and sales count of products upon order import.
236
  * Enhancement: Compatibility with WooCommerce shipment tracking and Advanced Shipment Tracking for WooCommerce.
502
 
503
  == Upgrade Notice ==
504
 
505
+ = 2.2.3 =
506
+ * WC 6.4 Tested OK.
507
+ * Enhancement: Bulk delete import logs.