Version Description
- Export order limit updated to unlimited.
Download this release
Release Info
Developer | hikeforce |
Plugin | Order Export & Order Import for WooCommerce |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
includes/exporter/class-wf-orderimpexpcsv-exporter.php
CHANGED
@@ -13,9 +13,8 @@ class WF_OrderImpExpCsv_Exporter {
|
|
13 |
public static function do_export($post_type = 'shop_order') {
|
14 |
global $wpdb;
|
15 |
|
16 |
-
$
|
17 |
-
|
18 |
-
$limit = 100;
|
19 |
$export_offset = !empty($_POST['offset']) ? intval($_POST['offset']) : 0;
|
20 |
$csv_columns = include( 'data/data-wf-post-columns.php' );
|
21 |
$user_columns_name = ! empty( $_POST['columns_name'] ) ? $_POST['columns_name'] : $csv_columns;
|
@@ -25,9 +24,6 @@ class WF_OrderImpExpCsv_Exporter {
|
|
25 |
|
26 |
$delimiter = !empty($_POST['delimiter']) ? $_POST['delimiter'] : ',';
|
27 |
|
28 |
-
if ($limit > $export_limit)
|
29 |
-
$limit = $export_limit;
|
30 |
-
|
31 |
$wpdb->hide_errors();
|
32 |
@set_time_limit(0);
|
33 |
if (function_exists('apache_setenv'))
|
13 |
public static function do_export($post_type = 'shop_order') {
|
14 |
global $wpdb;
|
15 |
|
16 |
+
$limit = !empty($_POST['limit']) ? intval($_POST['limit']) : 999999999;
|
17 |
+
|
|
|
18 |
$export_offset = !empty($_POST['offset']) ? intval($_POST['offset']) : 0;
|
19 |
$csv_columns = include( 'data/data-wf-post-columns.php' );
|
20 |
$user_columns_name = ! empty( $_POST['columns_name'] ) ? $_POST['columns_name'] : $csv_columns;
|
24 |
|
25 |
$delimiter = !empty($_POST['delimiter']) ? $_POST['delimiter'] : ',';
|
26 |
|
|
|
|
|
|
|
27 |
$wpdb->hide_errors();
|
28 |
@set_time_limit(0);
|
29 |
if (function_exists('apache_setenv'))
|
order-import-export.php
CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://www.xadapter.com/product/order-import-export-plugin-for-wooco
|
|
6 |
Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
|
7 |
Author: HikeForce
|
8 |
Author URI: http://www.xadapter.com/vendor/hikeforce/
|
9 |
-
Version: 1.0.
|
10 |
Text Domain: wf_order_import_export
|
11 |
*/
|
12 |
|
6 |
Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
|
7 |
Author: HikeForce
|
8 |
Author URI: http://www.xadapter.com/vendor/hikeforce/
|
9 |
+
Version: 1.0.2
|
10 |
Text Domain: wf_order_import_export
|
11 |
*/
|
12 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: woocommerce export orders, woocommerce import orders, woocommerce export import orders, export woocommerce orders with line item details
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -74,12 +74,16 @@ Yes. You can import or export order line item details.
|
|
74 |
3. Exported sample order Screen
|
75 |
|
76 |
== Changelog ==
|
|
|
|
|
77 |
= 1.0.1 =
|
78 |
* Minor modification.
|
79 |
= 1.0.0 =
|
80 |
* Export /Import WooCommerce Orders.
|
81 |
|
82 |
== Upgrade Notice ==
|
|
|
|
|
83 |
= 1.0.1 =
|
84 |
* Minor modification.
|
85 |
= 1.0.0 =
|
4 |
Tags: woocommerce export orders, woocommerce import orders, woocommerce export import orders, export woocommerce orders with line item details
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 1.0.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
74 |
3. Exported sample order Screen
|
75 |
|
76 |
== Changelog ==
|
77 |
+
= 1.0.2 =
|
78 |
+
* Export order limit updated to unlimited.
|
79 |
= 1.0.1 =
|
80 |
* Minor modification.
|
81 |
= 1.0.0 =
|
82 |
* Export /Import WooCommerce Orders.
|
83 |
|
84 |
== Upgrade Notice ==
|
85 |
+
= 1.0.2 =
|
86 |
+
* Export order limit updated to unlimited.
|
87 |
= 1.0.1 =
|
88 |
* Minor modification.
|
89 |
= 1.0.0 =
|