Order Export & Order Import for WooCommerce - Version 1.7.2

Version Description

  • Tested OK with WC 4.7.1 and WP 5.6
  • New filter options added in order export.
Download this release

Release Info

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

Code changes from version 1.7.1 to 1.7.2

includes/class-wf-orderimpexpcsv-admin-screen.php CHANGED
@@ -37,8 +37,12 @@ class WF_OrderImpExpCsv_Admin_Screen {
37
  $screen = get_current_screen();
38
  $allowed_creen_id = array('admin','woocommerce_page_wf_woocommerce_order_im_ex');
39
  if (in_array($screen->id, $allowed_creen_id)) {
 
 
40
  wp_enqueue_style('woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css');
41
  wp_enqueue_style('woocommerce-order-csv-importer', plugins_url(basename(plugin_dir_path(WF_OrderImpExpCsv_FILE)) . '/styles/wf-style.css', basename(__FILE__)), '', '1.0.0', 'screen');
 
 
42
  }
43
  }
44
 
37
  $screen = get_current_screen();
38
  $allowed_creen_id = array('admin','woocommerce_page_wf_woocommerce_order_im_ex');
39
  if (in_array($screen->id, $allowed_creen_id)) {
40
+ wp_enqueue_script('wc-enhanced-select');
41
+ wp_enqueue_script('jquery-ui-datepicker');
42
  wp_enqueue_style('woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css');
43
  wp_enqueue_style('woocommerce-order-csv-importer', plugins_url(basename(plugin_dir_path(WF_OrderImpExpCsv_FILE)) . '/styles/wf-style.css', basename(__FILE__)), '', '1.0.0', 'screen');
44
+ wp_enqueue_style('woocommerce-order-csv-importer2', plugins_url(basename(plugin_dir_path(WF_OrderImpExpCsv_FILE)) . '/styles/jquery-ui.css', basename(__FILE__)), '', '1.0.0', 'screen');
45
+
46
  }
47
  }
48
 
includes/exporter/class-wf-orderimpexpcsv-exporter.php CHANGED
@@ -19,6 +19,8 @@ class WF_OrderImpExpCsv_Exporter {
19
  $export_columns = ! empty( $_POST['columns'] ) ? wc_clean($_POST['columns']) : array();
20
  $export_order_statuses = !empty($_POST['order_status']) ? wc_clean($_POST['order_status']) : 'any';
21
  $delimiter = !empty($_POST['delimiter']) ? wc_clean( wp_unslash($_POST['delimiter'])) : ',';
 
 
22
 
23
  $wpdb->hide_errors();
24
  @set_time_limit(0);
@@ -41,7 +43,15 @@ class WF_OrderImpExpCsv_Exporter {
41
  'post_type' => 'shop_order',
42
  'post_status' => $export_order_statuses,
43
  'posts_per_page' => $limit,
44
- 'offset' => $export_offset
 
 
 
 
 
 
 
 
45
  );
46
 
47
  $query = new WP_Query($query_args);
@@ -132,10 +142,12 @@ class WF_OrderImpExpCsv_Exporter {
132
  $tax_data = maybe_unserialize($line_tax_data);
133
 
134
  $line_item['tax'] = isset($tax_data['total']) ? wc_format_decimal(wc_round_tax_total(array_sum((array) $tax_data['total'])), 2) : '';
135
- $line_tax_ser = maybe_serialize($line_tax_data);
136
- foreach ($line_tax_data['total'] as $rate_key => $rate_value) {
137
- $tdata = WC_Tax::get_rate_label($rate_key);
138
- $line_tax_total_data[] = $tdata."=".$rate_value;
 
 
139
  }
140
  if(!empty($line_tax_total_data)){
141
  $line_tax_totat = implode(",", $line_tax_total_data);
19
  $export_columns = ! empty( $_POST['columns'] ) ? wc_clean($_POST['columns']) : array();
20
  $export_order_statuses = !empty($_POST['order_status']) ? wc_clean($_POST['order_status']) : 'any';
21
  $delimiter = !empty($_POST['delimiter']) ? wc_clean( wp_unslash($_POST['delimiter'])) : ',';
22
+ $end_date = empty($_POST['end_date']) ? date('Y-m-d 23:59:59.99', current_time('timestamp')) : sanitize_text_field($_POST['end_date']) . ' 23:59:59.99';
23
+ $start_date = empty($_POST['start_date']) ? date('Y-m-d 00:00:00', 0) : sanitize_text_field($_POST['start_date']). ' 00:00:00';
24
 
25
  $wpdb->hide_errors();
26
  @set_time_limit(0);
43
  'post_type' => 'shop_order',
44
  'post_status' => $export_order_statuses,
45
  'posts_per_page' => $limit,
46
+ 'offset' => $export_offset,
47
+ 'date_query' => array(
48
+ array(
49
+ 'before' => $end_date,
50
+ 'after' => $start_date,
51
+ 'inclusive' => true,
52
+ ),
53
+ ),
54
+
55
  );
56
 
57
  $query = new WP_Query($query_args);
142
  $tax_data = maybe_unserialize($line_tax_data);
143
 
144
  $line_item['tax'] = isset($tax_data['total']) ? wc_format_decimal(wc_round_tax_total(array_sum((array) $tax_data['total'])), 2) : '';
145
+ $line_tax_ser = maybe_serialize($line_tax_data);
146
+ if(isset($line_tax_data['total'])){
147
+ foreach ($line_tax_data['total'] as $rate_key => $rate_value) {
148
+ $tdata = WC_Tax::get_rate_label($rate_key);
149
+ $line_tax_total_data[] = $tdata."=".$rate_value;
150
+ }
151
  }
152
  if(!empty($line_tax_total_data)){
153
  $line_tax_totat = implode(",", $line_tax_total_data);
includes/views/export/html-wf-export-orders.php CHANGED
@@ -1,4 +1,5 @@
1
  <div class="tool-box bg-white p-20p">
 
2
  <h3 class="title"><?php _e('Export Settings:', 'order-import-export-for-woocommerce'); ?></h3>
3
  <p><?php _e('Export and download your orders in CSV format. This file can be used to import orders back into your Woocommerce shop.', 'order-import-export-for-woocommerce'); ?></p>
4
  <form action="<?php echo admin_url('admin.php?page=wf_woocommerce_order_im_ex&action=export'); ?>" method="post">
@@ -21,6 +22,41 @@
21
  <p style="font-size: 12px"><?php _e('Number of orders to export. If no value is given all orders will be exported. This is useful if you have large number of orders and want to export partial list of orders.', 'order-import-export-for-woocommerce'); ?></p>
22
  </td>
23
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  </table>
25
  <p class="submit"><input type="submit" class="button button-primary" value="<?php _e('Export Orders', 'order-import-export-for-woocommerce'); ?>" /></p>
26
  </form>
@@ -28,4 +64,22 @@
28
  </div>
29
  <?php include(WT_OrdImpExpCsv_BASE . 'includes/views/market.php'); ?>
30
  <div class="clearfix"></div>
31
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <div class="tool-box bg-white p-20p">
2
+ <?php $order_statuses = wc_get_order_statuses(); ?>
3
  <h3 class="title"><?php _e('Export Settings:', 'order-import-export-for-woocommerce'); ?></h3>
4
  <p><?php _e('Export and download your orders in CSV format. This file can be used to import orders back into your Woocommerce shop.', 'order-import-export-for-woocommerce'); ?></p>
5
  <form action="<?php echo admin_url('admin.php?page=wf_woocommerce_order_im_ex&action=export'); ?>" method="post">
22
  <p style="font-size: 12px"><?php _e('Number of orders to export. If no value is given all orders will be exported. This is useful if you have large number of orders and want to export partial list of orders.', 'order-import-export-for-woocommerce'); ?></p>
23
  </td>
24
  </tr>
25
+
26
+
27
+ <tr>
28
+ <th>
29
+ <label for="v_order_status"><?php _e('Order Statuses', 'order-import-export-for-woocommerce'); ?></label>
30
+ </th>
31
+ <td>
32
+ <select id="v_order_status" name="order_status[]" data-placeholder="<?php _e('All Orders', 'order-import-export-for-woocommerce'); ?>" class="wc-enhanced-select" multiple="multiple">
33
+ <?php
34
+ foreach ($order_statuses as $key => $column) {
35
+ echo '<option value="' . $key . '">' . $column . '</option>';
36
+ }
37
+ ?>
38
+ </select>
39
+ <p style="font-size: 12px"><?php _e('Orders with these status will be exported.', 'order-import-export-for-woocommerce'); ?></p>
40
+ </td>
41
+ </tr>
42
+ <tr>
43
+ <th>
44
+ <label for="v_start_date"><?php _e('Start Date', 'order-import-export-for-woocommerce'); ?></label>
45
+ </th>
46
+ <td>
47
+ <input type="text" name="start_date" id="v_start_date" />
48
+ <p>Format: <code>YYYY-MM-DD.</code></p>
49
+ </td>
50
+ </tr>
51
+ <tr>
52
+ <th>
53
+ <label for="v_end_date"><?php _e('End Date', 'order-import-export-for-woocommerce'); ?></label>
54
+ </th>
55
+ <td>
56
+ <input type="text" name="end_date" id="v_end_date" />
57
+ <p>Format: <code>YYYY-MM-DD.</code></p>
58
+ </td>
59
+ </tr>
60
  </table>
61
  <p class="submit"><input type="submit" class="button button-primary" value="<?php _e('Export Orders', 'order-import-export-for-woocommerce'); ?>" /></p>
62
  </form>
64
  </div>
65
  <?php include(WT_OrdImpExpCsv_BASE . 'includes/views/market.php'); ?>
66
  <div class="clearfix"></div>
67
+ </div>
68
+
69
+ <script>
70
+ jQuery(document).ready(function(a) {
71
+
72
+ jQuery( "#v_start_date" ).datepicker({
73
+ dateFormat: "yy-mm-dd",
74
+ changeMonth: true,//this option for allowing user to select month
75
+ changeYear: true, //this option for allowing user to select from year range
76
+ });
77
+ jQuery( "#v_end_date" ).datepicker({
78
+ dateFormat: "yy-mm-dd",
79
+ changeMonth: true,//this option for allowing user to select month
80
+ changeYear: true, //this option for allowing user to select from year range
81
+ });
82
+
83
+
84
+ });
85
+ </script>
includes/views/market.php CHANGED
@@ -15,7 +15,7 @@ if (!defined('ABSPATH')) {
15
  <li style=""><?php echo __('30 Day Money Back Guarantee','cookie-law-info'); ?></li>
16
  <li style=""><?php echo __('Fast and Superior Support','cookie-law-info'); ?></li>
17
  <li style="">
18
- <a href="https://www.webtoffee.com/product/woocommerce-order-coupon-subscription-export-import//" target="_blank" class="button button-primary button-go-pro"><?php _e('Upgrade to Premium', 'wf_csv_import_export'); ?></a>
19
  </li>
20
  </ul>
21
 
15
  <li style=""><?php echo __('30 Day Money Back Guarantee','cookie-law-info'); ?></li>
16
  <li style=""><?php echo __('Fast and Superior Support','cookie-law-info'); ?></li>
17
  <li style="">
18
+ <a href="https://www.webtoffee.com/product/order-import-export-plugin-for-woocommerce/?utm_source=free_plugin_sidebar&utm_medium=order_imp_exp_basic&utm_campaign=Order_Import_Export&utm_content=<?php echo WF_ORDERIMPEXP_CURRENT_VERSION; ?>" target="_blank" class="button button-primary button-go-pro"><?php _e('Upgrade to Premium', 'wf_csv_import_export'); ?></a>
19
  </li>
20
  </ul>
21
 
order-import-export-for-woocommerce.php CHANGED
@@ -6,9 +6,9 @@ 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: 1.7.1
10
  Text Domain: order-import-export-for-woocommerce
11
- WC tested up to: 4.7.0
12
  License: GPLv3
13
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
14
  */
@@ -24,7 +24,7 @@ define("WF_CPN_IMP_EXP_ID", "wf_cpn_imp_exp");
24
  define("wf_coupon_csv_im_ex", "wf_coupon_csv_im_ex");
25
 
26
  if (!defined('WF_ORDERIMPEXP_CURRENT_VERSION')) {
27
- define("WF_ORDERIMPEXP_CURRENT_VERSION", "1.7.1");
28
  }
29
 
30
  /**
@@ -92,7 +92,7 @@ function wt_order_basic_register_activation_hook_callback() {
92
  public function wf_plugin_action_links( $links ) {
93
  $plugin_links = array(
94
  '<a href="' . admin_url( 'admin.php?page=wf_woocommerce_order_im_ex' ) . '">' . __( 'Import Export', 'order-import-export-for-woocommerce' ) . '</a>',
95
- '<a href="https://www.webtoffee.com/product/woocommerce-order-coupon-subscription-export-import/" target="_blank" style="color:#3db634;">' . __( 'Premium Upgrade', 'order-import-export-for-woocommerce' ) . '</a>',
96
  '<a target="_blank" href="https://wordpress.org/support/plugin/order-import-export-for-woocommerce/">' . __( 'Support', 'order-import-export-for-woocommerce' ) . '</a>',
97
  '<a target="_blank" href="https://wordpress.org/support/plugin/order-import-export-for-woocommerce/reviews/">' . __('Review', 'order-import-export-for-woocommerce') . '</a>',
98
 
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: 1.7.2
10
  Text Domain: order-import-export-for-woocommerce
11
+ WC tested up to: 4.7.1
12
  License: GPLv3
13
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
14
  */
24
  define("wf_coupon_csv_im_ex", "wf_coupon_csv_im_ex");
25
 
26
  if (!defined('WF_ORDERIMPEXP_CURRENT_VERSION')) {
27
+ define("WF_ORDERIMPEXP_CURRENT_VERSION", "1.7.2");
28
  }
29
 
30
  /**
92
  public function wf_plugin_action_links( $links ) {
93
  $plugin_links = array(
94
  '<a href="' . admin_url( 'admin.php?page=wf_woocommerce_order_im_ex' ) . '">' . __( 'Import Export', 'order-import-export-for-woocommerce' ) . '</a>',
95
+ '<a href="https://www.webtoffee.com/product/order-import-export-plugin-for-woocommerce/?utm_source=free_plugin_sidebar&utm_medium=order_imp_exp_basic&utm_campaign=Order_Import_Export&utm_content='.WF_ORDERIMPEXP_CURRENT_VERSION.'" target="_blank" style="color:#3db634;">' . __( 'Premium Upgrade', 'order-import-export-for-woocommerce' ) . '</a>',
96
  '<a target="_blank" href="https://wordpress.org/support/plugin/order-import-export-for-woocommerce/">' . __( 'Support', 'order-import-export-for-woocommerce' ) . '</a>',
97
  '<a target="_blank" href="https://wordpress.org/support/plugin/order-import-export-for-woocommerce/reviews/">' . __('Review', 'order-import-export-for-woocommerce') . '</a>',
98
 
readme.txt CHANGED
@@ -3,9 +3,9 @@ Contributors: webtoffee
3
  Donate link: https://www.webtoffee.com/plugins/
4
  Tags: order export, order import, woocommerce export orders, woocommerce import orders, export orders, import orders, order, export, import, woocommerce, csv, coupon, coupon export, coupon import, woocommerce export coupon , woocommerce import coupon , export coupons, import coupons, woocommerce coupon generator
5
  Requires at least: 3.0.1
6
- Tested up to: 5.5
7
  Requires PHP: 5.6
8
- Stable tag: 1.7.1
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -14,7 +14,9 @@ WooCommerce Export Orders & WooCommerce Import Orders. Easily Export WooCommerce
14
  == Description ==
15
 
16
  = Introduction =
17
- This is a perfect tool if you are migrating an existing shop on a different eCommerce platform to WooCommerce, allowing you to maintain your order history including subscription orders (available in premium).The plugin will even allow you to migrate thousands of coupons from your old eCommerce platform or Campaigns.
 
 
18
 
19
  &#128312; Export Orders to CSV file.
20
  &#128312; Import Orders from CSV file.
@@ -22,9 +24,22 @@ This is a perfect tool if you are migrating an existing shop on a different eCom
22
  &#128312; Import Coupons from CSV file.
23
  &#128312; Export Subscription Orders to CSV file(Premium Feature).
24
  &#128312; Import Subscription Orders from CSV file(Premium Feature).
25
- &#128312; Tested OK with WooCommerce 4.7.0
 
26
  &#128312; Tested OK with PHP 7.3.5
27
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  <blockquote>
29
 
30
 
@@ -86,6 +101,20 @@ Please refer the <a rel="nofollow" href="https://www.webtoffee.com/setting-up-or
86
  Highlights: Simply Export Orders, Customer Order CSV Export, Export Orders to Excel, Export Coupons, Import Coupons, Export Subscriptions, Import Subscriptions. Best WooCommerce Order Export Plugin in Market.
87
 
88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  = About WebToffee.com =
90
 
91
  <a rel="nofollow" href="https://www.webtoffee.com/">WebToffee</a> creates quality WordPress/WooCommerce plugins that are easy to use and customize. We are proud to have thousands of customers actively using our plugins across the globe.
@@ -93,9 +122,27 @@ Highlights: Simply Export Orders, Customer Order CSV Export, Export Orders to Ex
93
 
94
  == Installation ==
95
 
96
- 1. Upload the plugin folder to the /wp-content/plugins/ directory.
97
- 2. Activate the plugin through the Plugins menu in WordPress.
98
- 3. That's it! you can now configure the plugin.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
 
100
  == Frequently Asked Questions ==
101
 
@@ -107,6 +154,38 @@ Yes. You can import or export order line item details.
107
 
108
  By default, admin and store manager are given access to export orders from your store. Please visit <a rel="nofollow" href="https://www.webtoffee.com/how-to-export-woocommerce-items-without-user-role-restriction/">How to export WooCommerce items without user role restriction</a> for more details
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
 
111
  == Screenshots ==
112
 
@@ -118,6 +197,9 @@ By default, admin and store manager are given access to export orders from your
118
 
119
  == Changelog ==
120
 
 
 
 
121
  = 1.7.1 =
122
  * Tested OK with WC 4.7.0 and WP 5.5.3
123
  = 1.7.0 =
@@ -308,5 +390,6 @@ By default, admin and store manager are given access to export orders from your
308
 
309
  == Upgrade Notice ==
310
 
311
- = 1.7.1 =
312
- * Tested OK with WC 4.7.0 and WP 5.5.3
 
3
  Donate link: https://www.webtoffee.com/plugins/
4
  Tags: order export, order import, woocommerce export orders, woocommerce import orders, export orders, import orders, order, export, import, woocommerce, csv, coupon, coupon export, coupon import, woocommerce export coupon , woocommerce import coupon , export coupons, import coupons, woocommerce coupon generator
5
  Requires at least: 3.0.1
6
+ Tested up to: 5.6
7
  Requires PHP: 5.6
8
+ Stable tag: 1.7.2
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
14
  == Description ==
15
 
16
  = Introduction =
17
+ Order Import Export Plugin for WooCommerce is a perfect tool if you are migrating an existing shop on a different eCommerce platform to WooCommerce. You can also migrate order data seamlessly from one WooCommerce store to another allowing you to maintain your order history including subscription orders (available in premium).
18
+ The plugin will also allow you to migrate thousands of coupons from your old eCommerce platform or Campaigns.
19
+ The following are functionalities offered by the basic version of the plugin.
20
 
21
  &#128312; Export Orders to CSV file.
22
  &#128312; Import Orders from CSV file.
24
  &#128312; Import Coupons from CSV file.
25
  &#128312; Export Subscription Orders to CSV file(Premium Feature).
26
  &#128312; Import Subscription Orders from CSV file(Premium Feature).
27
+ &#128312; Tested OK with WooCommerce 4.7.1
28
+ &#128312; Tested OK with WP 5.6
29
  &#128312; Tested OK with PHP 7.3.5
30
 
31
+ Additional features that will help you in the CSV export and import process:
32
+
33
+ &#128312; Export and import in batches
34
+ &#128312; Create a pre-saved template for quick and easy export
35
+ &#128312; Mapping and re-ordering of export columns
36
+ &#128312; Export orders starting after an offset value
37
+ &#128312; Skip or update existing orders/coupons while importing.
38
+ &#128312; Create and maintain import and export history with options to re-run, view logs, and delete an entry
39
+ &#128312; Log of the import and export will help in identifying what went wrong for debugging purposes.
40
+
41
+ More information about the setup of the plugin and a sample CSV that is taken as input by the plugin is given in the <a rel="nofollow" href="https://www.webtoffee.com/order-coupon-subscription-export-import-plugin-woocommerce-user-guide/">basic set up guide</a>
42
+
43
  <blockquote>
44
 
45
 
101
  Highlights: Simply Export Orders, Customer Order CSV Export, Export Orders to Excel, Export Coupons, Import Coupons, Export Subscriptions, Import Subscriptions. Best WooCommerce Order Export Plugin in Market.
102
 
103
 
104
+ Other useful plugins from WebToffee for migrating WooCommerce data:
105
+
106
+ <a rel="nofollow" href="https://wordpress.org/plugins/order-xml-file-export-import-for-woocommerce/">Order XML File Export Import for WooCommerce</a>: Export and Import orders from your store using an XML file.
107
+
108
+ <a rel="nofollow" href="https://wordpress.org/plugins/wt-woocommerce-sequential-order-numbers/">Sequential Order Number for WooCommerce</a>: Easily manage orders with all the order numbers sorted sequentially.
109
+
110
+ <a rel="nofollow" href="https://wordpress.org/plugins/product-import-export-for-woo/">Product Import Export for WooCommerce</a>: This free plugin will help you import and export products from your store using a CSV file.
111
+
112
+ <a rel="nofollow" href="https://wordpress.org/plugins/product-reviews-import-export-for-woocommerce/">Product Reviews Import Export for WooCommerce</a>: This plugin will help you import and export the product reviews in your store using a CSV file.
113
+
114
+ <a rel="nofollow" href="https://wordpress.org/plugins/users-customers-import-export-for-wp-woocommerce/">Import Export WordPress Users</a>: Import and export the users in your WordPress store using a CSV file with the help of this plugin.
115
+
116
+ <a rel="nofollow" href="https://wordpress.org/plugins/webtoffee-product-feed/">Product Catalog Sync for Facebook</a>: Allows you to sync your WooCommerce products with Facebook Business Manager Account
117
+
118
  = About WebToffee.com =
119
 
120
  <a rel="nofollow" href="https://www.webtoffee.com/">WebToffee</a> creates quality WordPress/WooCommerce plugins that are easy to use and customize. We are proud to have thousands of customers actively using our plugins across the globe.
122
 
123
  == Installation ==
124
 
125
+ **Pre-requisites**
126
+
127
+ &#128312; PHP Version:
128
+ &#128312; WooCommerce version:
129
+ &#128312; WordPress version:
130
+
131
+ **Automatic Installation**
132
+
133
+ The automatic installation of the plugin is the easiest way to install the plugin. You can install the plugin without even leaving your browser window and from within your WordPress dashboard.
134
+
135
+ From your admin dashboard, go to Plugins > Add New. From the search box, type “WooCommerce order import” or “WooCommerce order export” and then search plugins. Click the install button on the Order Import Export Plugin for WooCommerce by WebToffee and then activate the plugin.
136
+
137
+ Now you are ready to start importing and exporting orders and coupons to and from your store.
138
+
139
+ **Manual Installation**
140
+
141
+ In the manual installation, you will need to download the zip file of the plugin from the plugin page in WordPress.org. You can upload the file directly from your WordPress dashboard, or using an FTP application.
142
+
143
+ **Plugin Updates**
144
+
145
+ For every update of the plugin, you will be notified of the installed plugins page. You can directly update the plugin from your dashboard. We recommend that you keep the latest version of the plugin so that you can avail of the new functionalities and security features.
146
 
147
  == Frequently Asked Questions ==
148
 
154
 
155
  By default, admin and store manager are given access to export orders from your store. Please visit <a rel="nofollow" href="https://www.webtoffee.com/how-to-export-woocommerce-items-without-user-role-restriction/">How to export WooCommerce items without user role restriction</a> for more details
156
 
157
+ = Can I update existing orders using this plugin? =
158
+
159
+ Yes, you can update the existing order details while importing.
160
+
161
+ = Can I create mass orders using this plugin? =
162
+
163
+ Yes, you can create mass orders while importing using a CSV file. Create a CSV for this purpose with order details without specifying the order ID. This will create new orders in the store the file is imported to.
164
+
165
+ = Error caused because of the same order IDs on the target website =
166
+
167
+ If you are migrating the orders from one site to another site and if the order ID is already used on the target site for other posts, then the orders will be imported with a new order number. You can resolve this issue by deleting the entries in the order ID column of the CSV.
168
+ If you need to retail the order numbers, you can overcome this issue with the help of our <a rel="nofollow" href="https://wordpress.org/plugins/wt-woocommerce-sequential-order-numbers/">Sequential order number plugin</a>.
169
+
170
+ = Does this plugin import/export custom fields? =
171
+
172
+ No, this feature is only supported by the premium version of the <a rel="nofollow" href="https://www.webtoffee.com/product/order-import-export-plugin-for-woocommerce/">WooCommerce order import export</a> plugin.
173
+
174
+ = Are the order IDs retained in an import/export? =
175
+
176
+ Yes the order IDs will be retained unless there is another post type or order of the same ID already present in the website the CSV is imported to.
177
+
178
+ = Does this plugin import orders to an XML file? =
179
+
180
+ No, this is a premium feature.
181
+
182
+ = Does this plugin support multisite? =
183
+
184
+ Yes.
185
+
186
+ = Should the CSV be UTF-8 encoded? =
187
+
188
+ Yes.
189
 
190
  == Screenshots ==
191
 
197
 
198
  == Changelog ==
199
 
200
+ = 1.7.2 =
201
+ * Tested OK with WC 4.7.1 and WP 5.6
202
+ * New filter options added in order export.
203
  = 1.7.1 =
204
  * Tested OK with WC 4.7.0 and WP 5.5.3
205
  = 1.7.0 =
390
 
391
  == Upgrade Notice ==
392
 
393
+ = 1.7.2 =
394
+ * Tested OK with WC 4.7.1 and WP 5.6
395
+ * New filter options added in order export.
styles/jquery-ui.css ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ /*! jQuery UI - v1.12.1 - 2017-01-05
2
+ * http://jqueryui.com
3
+ * Includes: core.css, datepicker.css, theme.css
4
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
5
+ * Copyright jQuery Foundation and other contributors; Licensed MIT */
6
+
7
+ .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("../images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("../images/ui-icons_444444_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("../images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("../images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("../images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("../images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("../images/ui-icons_777777_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}