Version Description
- Tested OK with WC 4.9.2
- Enhancement: product image import.
Download this release
Release Info
Developer | webtoffee |
Plugin | Product Import Export for WooCommerce |
Version | 1.8.8 |
Comparing to | |
See all releases |
Code changes from version 1.8.7 to 1.8.8
includes/importer/class-wf-prodimpexpcsv-product-import.php
CHANGED
@@ -1444,7 +1444,11 @@ class WF_ProdImpExpCsv_Product_Import extends WP_Importer {
|
|
1444 |
*/
|
1445 |
public function fetch_remote_file( $url, $post ) {
|
1446 |
|
1447 |
-
|
|
|
|
|
|
|
|
|
1448 |
$file_name = basename( current( explode( '?', $url ) ) );
|
1449 |
$wp_filetype = wp_check_filetype( $file_name, null );
|
1450 |
$parsed_url = @parse_url( $url );
|
1444 |
*/
|
1445 |
public function fetch_remote_file( $url, $post ) {
|
1446 |
|
1447 |
+
if(strstr($url, '!')) {
|
1448 |
+
$image_url = explode('!', $url);
|
1449 |
+
$url = $image_url[0];
|
1450 |
+
}
|
1451 |
+
// extract the file name and extension from the url
|
1452 |
$file_name = basename( current( explode( '?', $url ) ) );
|
1453 |
$wp_filetype = wp_check_filetype( $file_name, null );
|
1454 |
$parsed_url = @parse_url( $url );
|
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 |
-
WC tested up to: 4.
|
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.
|
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.8
|
9 |
+
WC tested up to: 4.9.2
|
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.8.8" );
|
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 |
|
@@ -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 4.
|
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,10 @@ By default, admin and store manager are given access to export orders from your
|
|
157 |
|
158 |
== Changelog ==
|
159 |
|
|
|
|
|
|
|
|
|
160 |
= 1.8.7 =
|
161 |
* Bug Fix: Handling of ‘onbackorder’ value for ‘stock_status’.
|
162 |
|
@@ -413,5 +417,6 @@ By default, admin and store manager are given access to export orders from your
|
|
413 |
|
414 |
== Upgrade Notice ==
|
415 |
|
416 |
-
= 1.8.
|
417 |
-
*
|
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.6
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.8.8
|
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 4.9.2
|
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.8.8 =
|
161 |
+
* Tested OK with WC 4.9.2
|
162 |
+
* Enhancement: product image import.
|
163 |
+
|
164 |
= 1.8.7 =
|
165 |
* Bug Fix: Handling of ‘onbackorder’ value for ‘stock_status’.
|
166 |
|
417 |
|
418 |
== Upgrade Notice ==
|
419 |
|
420 |
+
= 1.8.8 =
|
421 |
+
* Tested OK with WC 4.9.2
|
422 |
+
* Enhancement: product image import.
|