Version Description
bug fix: re-import options not rendering correctly
Download this release
Release Info
Developer | soflyy |
Plugin | Import Products from any XML or CSV to WooCommerce |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.4.1
- actions/pmxi_reimport.php +2 -2
- plugin.php +2 -2
- readme.txt +6 -3
actions/pmxi_reimport.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
-
function pmwi_pmxi_reimport($
|
3 |
|
4 |
-
if ($
|
5 |
|
6 |
$all_existing_attributes = array();
|
7 |
$hide_taxonomies = array('product_type');
|
1 |
<?php
|
2 |
+
function pmwi_pmxi_reimport($post_type, $post){
|
3 |
|
4 |
+
if ($post_type != 'product' and empty($post['is_override_post_type'])) return;
|
5 |
|
6 |
$all_existing_attributes = array();
|
7 |
$hide_taxonomies = array('product_type');
|
plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP All Import - WooCommerce Add-On
|
4 |
Plugin URI: http://www.wpallimport.com/
|
5 |
Description: An extremely easy, drag & drop importer to import WooCommerce simple products. A paid upgrade is available for premium support and support for Variable, Grouped, and External/Affiliate products
|
6 |
-
Version: 1.4.
|
7 |
Author: Soflyy
|
8 |
WC tested up to: 3.6.0
|
9 |
*/
|
@@ -25,7 +25,7 @@ if ( is_plugin_active('wpai-woocommerce-add-on/wpai-woocommerce-add-on.php') ) {
|
|
25 |
}
|
26 |
else {
|
27 |
|
28 |
-
define('PMWI_FREE_VERSION', '1.4.
|
29 |
|
30 |
define('PMWI_EDITION', 'free');
|
31 |
|
3 |
Plugin Name: WP All Import - WooCommerce Add-On
|
4 |
Plugin URI: http://www.wpallimport.com/
|
5 |
Description: An extremely easy, drag & drop importer to import WooCommerce simple products. A paid upgrade is available for premium support and support for Variable, Grouped, and External/Affiliate products
|
6 |
+
Version: 1.4.1
|
7 |
Author: Soflyy
|
8 |
WC tested up to: 3.6.0
|
9 |
*/
|
25 |
}
|
26 |
else {
|
27 |
|
28 |
+
define('PMWI_FREE_VERSION', '1.4.1');
|
29 |
|
30 |
define('PMWI_EDITION', 'free');
|
31 |
|
readme.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
=== Import Products from any XML or CSV to WooCommerce ===
|
2 |
Contributors: soflyy, wpallimport
|
3 |
Requires at least: 4.1
|
4 |
-
Tested up to: 5.
|
5 |
-
Stable tag: 1.4.
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
Tags: woocommerce xml import, woocommerce csv import, woocommerce, import, xml, csv, wp all import, csv import, import csv, xml import, import xml, woocommerce csv importer, woocommerce xml importer, csv importer, csv import suite
|
@@ -83,8 +83,11 @@ The WooCommerce add-on will appear in the Step 4 of WP All Import.
|
|
83 |
|
84 |
== Changelog ==
|
85 |
|
|
|
|
|
|
|
86 |
= 1.4.0 =
|
87 |
-
improvement: notice on plugin activation when
|
88 |
improvement: match cross-sell products by title
|
89 |
bug fix: shipping class not imported properly in some cases
|
90 |
|
1 |
=== Import Products from any XML or CSV to WooCommerce ===
|
2 |
Contributors: soflyy, wpallimport
|
3 |
Requires at least: 4.1
|
4 |
+
Tested up to: 5.2
|
5 |
+
Stable tag: 1.4.1
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
Tags: woocommerce xml import, woocommerce csv import, woocommerce, import, xml, csv, wp all import, csv import, import csv, xml import, import xml, woocommerce csv importer, woocommerce xml importer, csv importer, csv import suite
|
83 |
|
84 |
== Changelog ==
|
85 |
|
86 |
+
= 1.4.1 =
|
87 |
+
bug fix: re-import options not rendering correctly
|
88 |
+
|
89 |
= 1.4.0 =
|
90 |
+
improvement: notice on plugin activation when WooCommerce Add-On Pro installed
|
91 |
improvement: match cross-sell products by title
|
92 |
bug fix: shipping class not imported properly in some cases
|
93 |
|