Version Description
- Content update.
Download this release
Release Info
Developer | webtoffee |
Plugin | Product Import Export for WooCommerce |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.5.1
includes/exporter/class-wf-prodimpexpcsv-exporter.php
CHANGED
@@ -30,11 +30,11 @@ class WF_ProdImpExpCsv_Exporter {
|
|
30 |
if ( function_exists( 'apache_setenv' ) )
|
31 |
@apache_setenv( 'no-gzip', 1 );
|
32 |
@ini_set('zlib.output_compression', 0);
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
header( 'Content-Type: text/csv; charset=UTF-8' );
|
39 |
header( 'Content-Disposition: attachment; filename=woocommerce-product-export.csv' );
|
40 |
header( 'Pragma: no-cache' );
|
30 |
if ( function_exists( 'apache_setenv' ) )
|
31 |
@apache_setenv( 'no-gzip', 1 );
|
32 |
@ini_set('zlib.output_compression', 0);
|
33 |
+
|
34 |
+
//@ob_clean();
|
35 |
+
@ob_end_clean(); // to prevent issue that unidentified characters when opened in MS-Excel in some servers
|
36 |
+
|
37 |
+
|
38 |
header( 'Content-Type: text/csv; charset=UTF-8' );
|
39 |
header( 'Content-Disposition: attachment; filename=woocommerce-product-export.csv' );
|
40 |
header( 'Pragma: no-cache' );
|
product-csv-import-export.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.5.
|
9 |
WC tested up to: 3.5.1
|
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.5.
|
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.5.1
|
9 |
WC tested up to: 3.5.1
|
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.5.1");
|
22 |
}
|
23 |
if (!defined('WF_PROD_IMP_EXP_ID')) {
|
24 |
define("WF_PROD_IMP_EXP_ID", "wf_prod_imp_exp");
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.9.8
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -97,7 +97,7 @@ WooCommerce variable product import allows you to import all variations of the p
|
|
97 |
|
98 |
= WooCommerce import products with images =
|
99 |
|
100 |
-
|
101 |
|
102 |
|
103 |
= Other features =
|
@@ -144,6 +144,10 @@ Yes. You can import or export product images along with other details
|
|
144 |
|
145 |
== Changelog ==
|
146 |
|
|
|
|
|
|
|
|
|
147 |
= 1.5.0 =
|
148 |
* Tested OK with WC 3.5.1
|
149 |
* Image importing process optimised
|
@@ -262,7 +266,5 @@ Yes. You can import or export product images along with other details
|
|
262 |
|
263 |
== Upgrade Notice ==
|
264 |
|
265 |
-
= 1.5.
|
266 |
-
*
|
267 |
-
* Image importing process optimised.
|
268 |
-
* Bug fix.
|
4 |
Tags: woocommerce product import, woocommerce import products, woocommerce export products, export woocommerce products, import products into woocommerce
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.9.8
|
7 |
+
Stable tag: 1.5.1
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
97 |
|
98 |
= WooCommerce import products with images =
|
99 |
|
100 |
+
The plugin facilitates easy import of images related to a product. When the products are imported using the plugin, the first image related to a product in the image column of the CSV file is taken as its featured image. If there are multiple images in the same column, the image(s) after the first one is taken as the gallery images of the product.
|
101 |
|
102 |
|
103 |
= Other features =
|
144 |
|
145 |
== Changelog ==
|
146 |
|
147 |
+
|
148 |
+
= 1.5.1 =
|
149 |
+
* Content update.
|
150 |
+
|
151 |
= 1.5.0 =
|
152 |
* Tested OK with WC 3.5.1
|
153 |
* Image importing process optimised
|
266 |
|
267 |
== Upgrade Notice ==
|
268 |
|
269 |
+
= 1.5.1 =
|
270 |
+
* Content update.
|
|
|
|