Product Import Export for WooCommerce - Version 1.9.0

Version Description

  • Tested OK with WC 5.1.0 and WP 5.7.0
Download this release

Release Info

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

Code changes from version 1.8.9 to 1.9.0

includes/importer/class-wf-prodimpexpcsv-product-import.php CHANGED
@@ -1117,7 +1117,8 @@ class WF_ProdImpExpCsv_Product_Import extends WP_Importer {
1117
 
1118
  unset($post['terms'], $terms_to_set);
1119
  }
1120
-
 
1121
  // add/update post meta
1122
  if (!empty($post['postmeta']) && is_array($post['postmeta'])) {
1123
  foreach ($post['postmeta'] as $meta) {
@@ -1151,8 +1152,7 @@ class WF_ProdImpExpCsv_Product_Import extends WP_Importer {
1151
 
1152
  // Loop attachments already attached to the product
1153
  //$attachments = get_posts( 'post_parent=' . $post_id . '&post_type=attachment&fields=ids&post_mime_type=image&numberposts=-1' );
1154
-
1155
- $processing_product_object = wc_get_product($post_id);
1156
  $attachments = $processing_product_object->get_gallery_attachment_ids();
1157
  $post_thumbnail_id = get_post_thumbnail_id($post_id);
1158
  if (isset($post_thumbnail_id) && !empty($post_thumbnail_id)) {
1117
 
1118
  unset($post['terms'], $terms_to_set);
1119
  }
1120
+
1121
+ $processing_product_object = wc_get_product($post_id);
1122
  // add/update post meta
1123
  if (!empty($post['postmeta']) && is_array($post['postmeta'])) {
1124
  foreach ($post['postmeta'] as $meta) {
1152
 
1153
  // Loop attachments already attached to the product
1154
  //$attachments = get_posts( 'post_parent=' . $post_id . '&post_type=attachment&fields=ids&post_mime_type=image&numberposts=-1' );
1155
+
 
1156
  $attachments = $processing_product_object->get_gallery_attachment_ids();
1157
  $post_thumbnail_id = get_post_thumbnail_id($post_id);
1158
  if (isset($post_thumbnail_id) && !empty($post_thumbnail_id)) {
product-import-export-for-woo.php CHANGED
@@ -5,8 +5,8 @@
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
9
- WC tested up to: 5.0.0
10
  License: GPLv3
11
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
12
  Text Domain: product-import-export-for-woo
@@ -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.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.9.0
9
+ WC tested up to: 5.1.0
10
  License: GPLv3
11
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
12
  Text Domain: product-import-export-for-woo
18
 
19
 
20
  if ( !defined( 'WF_PIPE_CURRENT_VERSION' ) ) {
21
+ define( "WF_PIPE_CURRENT_VERSION", "1.9.0" );
22
  }
23
  if ( !defined( 'WF_PROD_IMP_EXP_ID' ) ) {
24
  define( "WF_PROD_IMP_EXP_ID", "wf_prod_imp_exp" );
readme.txt CHANGED
@@ -3,9 +3,9 @@ Contributors: webtoffee
3
  Donate link: https://www.webtoffee.com/plugins/
4
  Tags: woocommerce product import, woocommerce import products, woocommerce export products, export woocommerce products, import products into woocommerce ,product, export, import, woocommerce ,csv
5
  Requires at least: 3.0.1
6
- Tested up to: 5.6
7
  Requires PHP: 5.6
8
- Stable tag: 1.8.9
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -21,7 +21,7 @@ Product import export plugin allows you to import or export WooCommerce simple p
21
 
22
  🔸 Export Simple Products in to a CSV file.
23
  🔸 Import Simple Products in CSV format in to WooCommerce Store.
24
- 🔸 Tested OK with WooCommerce 5.0.0
25
 
26
 
27
  Highlights: WooCommerce Product Export, WooCommerce Product CSV Import Suite, WooCommerce bulk product upload, WooCommerce import products with images, import amazon products to WooCommerce, Export Products to xls. Pro Version supports both Simple and Variable products.
@@ -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.9 =
161
  * Tested OK with WC 5.0.0 and WP 5.6.1
162
 
@@ -420,5 +423,5 @@ By default, admin and store manager are given access to export orders from your
420
 
421
  == Upgrade Notice ==
422
 
423
- = 1.8.9 =
424
- * Tested OK with WC 5.0.0 and WP 5.6.1
3
  Donate link: https://www.webtoffee.com/plugins/
4
  Tags: woocommerce product import, woocommerce import products, woocommerce export products, export woocommerce products, import products into woocommerce ,product, export, import, woocommerce ,csv
5
  Requires at least: 3.0.1
6
+ Tested up to: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 1.9.0
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
21
 
22
  🔸 Export Simple Products in to a CSV file.
23
  🔸 Import Simple Products in CSV format in to WooCommerce Store.
24
+ 🔸 Tested OK with WooCommerce 5.1.0
25
 
26
 
27
  Highlights: WooCommerce Product Export, WooCommerce Product CSV Import Suite, WooCommerce bulk product upload, WooCommerce import products with images, import amazon products to WooCommerce, Export Products to xls. Pro Version supports both Simple and Variable products.
157
 
158
  == Changelog ==
159
 
160
+ = 1.9.0 =
161
+ * Tested OK with WC 5.1.0 and WP 5.7.0
162
+
163
  = 1.8.9 =
164
  * Tested OK with WC 5.0.0 and WP 5.6.1
165
 
423
 
424
  == Upgrade Notice ==
425
 
426
+ = 1.9.0 =
427
+ * Tested OK with WC 5.1.0 and WP 5.7.0