Version Description
- Bug Fix: Handling of onbackorder value for stock_status.
Download this release
Release Info
Developer | webtoffee |
Plugin | Product Import Export for WooCommerce |
Version | 1.8.7 |
Comparing to | |
See all releases |
Code changes from version 1.8.6 to 1.8.7
includes/importer/data/data-wf-postmeta-allowed.php
CHANGED
@@ -8,7 +8,7 @@ return array(
|
|
8 |
'downloadable' => array( 'yes', 'no' ),
|
9 |
'virtual' => array( 'yes', 'no' ),
|
10 |
'visibility' => array( 'visible', 'catalog', 'search', 'hidden' ),
|
11 |
-
'stock_status' => array( 'instock', 'outofstock' ),
|
12 |
'backorders' => array( 'yes', 'no', 'notify' ),
|
13 |
'manage_stock' => array( 'yes', 'no' ),
|
14 |
'tax_status' => array( 'taxable', 'shipping', 'none' ),
|
8 |
'downloadable' => array( 'yes', 'no' ),
|
9 |
'virtual' => array( 'yes', 'no' ),
|
10 |
'visibility' => array( 'visible', 'catalog', 'search', 'hidden' ),
|
11 |
+
'stock_status' => array( 'instock', 'outofstock', 'onbackorder'),
|
12 |
'backorders' => array( 'yes', 'no', 'notify' ),
|
13 |
'manage_stock' => array( 'yes', 'no' ),
|
14 |
'tax_status' => array( 'taxable', 'shipping', 'none' ),
|
includes/importer/data/data-wf-postmeta-defaults.php
CHANGED
@@ -11,7 +11,7 @@ return apply_filters( 'woocommerce_wf_csv_product_postmeta_defaults', array(
|
|
11 |
'price' => '',
|
12 |
'visibility' => 'visible',
|
13 |
'stock' => 0,
|
14 |
-
'stock_status' => '
|
15 |
'backorders' => 'no',
|
16 |
'manage_stock' => 'no',
|
17 |
'sale_price' => '',
|
11 |
'price' => '',
|
12 |
'visibility' => 'visible',
|
13 |
'stock' => 0,
|
14 |
+
'stock_status' => '',
|
15 |
'backorders' => 'no',
|
16 |
'manage_stock' => 'no',
|
17 |
'sale_price' => '',
|
product-import-export-for-woo.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
Description: Import and Export Products From and To your WooCommerce Store.
|
6 |
Author: WebToffee
|
7 |
Author URI: https://www.webtoffee.com/product/product-import-export-woocommerce/
|
8 |
-
Version: 1.8.
|
9 |
WC tested up to: 4.8.0
|
10 |
License: GPLv3
|
11 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
@@ -18,7 +18,7 @@ if ( !defined( 'ABSPATH' ) || !is_admin() ) {
|
|
18 |
|
19 |
|
20 |
if ( !defined( 'WF_PIPE_CURRENT_VERSION' ) ) {
|
21 |
-
define( "WF_PIPE_CURRENT_VERSION", "1.8.
|
22 |
}
|
23 |
if ( !defined( 'WF_PROD_IMP_EXP_ID' ) ) {
|
24 |
define( "WF_PROD_IMP_EXP_ID", "wf_prod_imp_exp" );
|
5 |
Description: Import and Export Products From and To your WooCommerce Store.
|
6 |
Author: WebToffee
|
7 |
Author URI: https://www.webtoffee.com/product/product-import-export-woocommerce/
|
8 |
+
Version: 1.8.7
|
9 |
WC tested up to: 4.8.0
|
10 |
License: GPLv3
|
11 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
18 |
|
19 |
|
20 |
if ( !defined( 'WF_PIPE_CURRENT_VERSION' ) ) {
|
21 |
+
define( "WF_PIPE_CURRENT_VERSION", "1.8.7" );
|
22 |
}
|
23 |
if ( !defined( 'WF_PROD_IMP_EXP_ID' ) ) {
|
24 |
define( "WF_PROD_IMP_EXP_ID", "wf_prod_imp_exp" );
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: woocommerce product import, woocommerce import products, woocommerce expor
|
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.6
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 1.8.
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -157,6 +157,9 @@ By default, admin and store manager are given access to export orders from your
|
|
157 |
|
158 |
== Changelog ==
|
159 |
|
|
|
|
|
|
|
160 |
= 1.8.6 =
|
161 |
* Tested OK with WC 4.8.0 and WP 5.6
|
162 |
* Enhancement: product_page_url export.
|
@@ -410,6 +413,5 @@ By default, admin and store manager are given access to export orders from your
|
|
410 |
|
411 |
== Upgrade Notice ==
|
412 |
|
413 |
-
= 1.8.
|
414 |
-
*
|
415 |
-
* Enhancement: product_page_url export.
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.6
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.8.7
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
157 |
|
158 |
== Changelog ==
|
159 |
|
160 |
+
= 1.8.7 =
|
161 |
+
* Bug Fix: Handling of ‘onbackorder’ value for ‘stock_status’.
|
162 |
+
|
163 |
= 1.8.6 =
|
164 |
* Tested OK with WC 4.8.0 and WP 5.6
|
165 |
* Enhancement: product_page_url export.
|
413 |
|
414 |
== Upgrade Notice ==
|
415 |
|
416 |
+
= 1.8.7 =
|
417 |
+
* Bug Fix: Handling of ‘onbackorder’ value for ‘stock_status’.
|
|