Product Import Export for WooCommerce - Version 1.8.0

Version Description

  • Update:- Compatible with meta 'purchasenote'.
Download this release

Release Info

Developer webtoffee
Plugin Icon 128x128 Product Import Export for WooCommerce
Version 1.8.0
Comparing to
See all releases

Code changes from version 1.7.9 to 1.8.0

includes/exporter/data/data-wf-post-columns.php CHANGED
@@ -49,5 +49,6 @@ return apply_filters('woocommerce_csv_product_post_columns', array(
49
  '_button_text' => 'button_text',
50
 
51
  '_sold_individually' => 'sold_individually',
52
- '_low_stock_amount' => 'low_stock_amount'
 
53
  ) );
49
  '_button_text' => 'button_text',
50
 
51
  '_sold_individually' => 'sold_individually',
52
+ '_low_stock_amount' => 'low_stock_amount',
53
+ '_purchase_note' => 'purchase_note'
54
  ) );
includes/importer/data/data-wf-postmeta-defaults.php CHANGED
@@ -43,5 +43,6 @@ return apply_filters( 'woocommerce_wf_csv_product_postmeta_defaults', array(
43
  'button_text' => '',
44
  'sold_individually' => 'no',
45
  'low_stock_amount' =>0,
 
46
 
47
  ) );
43
  'button_text' => '',
44
  'sold_individually' => 'no',
45
  'low_stock_amount' =>0,
46
+ 'purchase_note' =>'',
47
 
48
  ) );
includes/importer/data/data-wf-reserved-fields-pair.php CHANGED
@@ -31,6 +31,7 @@ return array(
31
  'length' => 'Dimensions: length | Length',
32
  'width' => 'Dimensions: width | Width',
33
  'height' => 'Dimensions: height | Height',
 
34
  'tax_status' => 'Tax: Tax Status | Taxable product or not',
35
  'tax_class' => 'Tax: Tax Class | Tax class ( eg:- reduced rate)',
36
  'upsell_ids' => 'Related Products: Upsell IDs | Upsell Product ids',
31
  'length' => 'Dimensions: length | Length',
32
  'width' => 'Dimensions: width | Width',
33
  'height' => 'Dimensions: height | Height',
34
+ 'purchase_note' => 'Purchase Note | Purchase Note',
35
  'tax_status' => 'Tax: Tax Status | Taxable product or not',
36
  'tax_class' => 'Tax: Tax Class | Tax class ( eg:- reduced rate)',
37
  'upsell_ids' => 'Related Products: Upsell IDs | Upsell Product ids',
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.7.9
9
  WC tested up to: 4.1.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.7.9" );
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.0
9
  WC tested up to: 4.1.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.0" );
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.4
7
  Requires PHP: 5.6
8
- Stable tag: 1.7.9
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -155,6 +155,9 @@ By default, admin and store manager are given access to export orders from your
155
 
156
  == Changelog ==
157
 
 
 
 
158
  = 1.7.9 =
159
  * Tested OK with WC 4.1.0 and WP 5.4.1
160
 
@@ -383,6 +386,5 @@ By default, admin and store manager are given access to export orders from your
383
 
384
  == Upgrade Notice ==
385
 
386
- = 1.7.9 =
387
- * Tested OK with WC 4.1.0 and WP 5.4.1
388
-
5
  Requires at least: 3.0.1
6
  Tested up to: 5.4
7
  Requires PHP: 5.6
8
+ Stable tag: 1.8.0
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
155
 
156
  == Changelog ==
157
 
158
+ = 1.8.0 =
159
+ * Update:- Compatible with meta '_purchase_note'.
160
+
161
  = 1.7.9 =
162
  * Tested OK with WC 4.1.0 and WP 5.4.1
163
 
386
 
387
  == Upgrade Notice ==
388
 
389
+ = 1.8.0 =
390
+ * Update:- Compatible with meta '_purchase_note'.