Version Description
- Remove deprecated fields to fix issue with WooCommerce API.
Download this release
Release Info
Developer | WPAllImport |
Plugin | Import Settings into WordPress SEO by Yoast |
Version | 1.1.7 |
Comparing to | |
See all releases |
Code changes from version 1.1.6 to 1.1.7
- rapid-addon.php +1 -1
- readme.txt +5 -2
- yoast-addon.php +1 -3
rapid-addon.php
CHANGED
@@ -380,7 +380,7 @@ if (!class_exists('RapidAddon')) {
|
|
380 |
|
381 |
if (!empty($mapping_rules) and is_array($mapping_rules)) {
|
382 |
foreach ($mapping_rules as $rule_number => $map_to) {
|
383 |
-
if (
|
384 |
$data[$field_slug] = trim($map_to[trim($data[$field_slug])]);
|
385 |
break;
|
386 |
}
|
380 |
|
381 |
if (!empty($mapping_rules) and is_array($mapping_rules)) {
|
382 |
foreach ($mapping_rules as $rule_number => $map_to) {
|
383 |
+
if (isset($map_to[trim($data[$field_slug])])){
|
384 |
$data[$field_slug] = trim($map_to[trim($data[$field_slug])]);
|
385 |
break;
|
386 |
}
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Tags: seo, import seo, search engine optimization, import search engine optimiza
|
|
4 |
License: GPLv2 or later
|
5 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
6 |
Requires at least: 4.1.0
|
7 |
-
Tested up to:
|
8 |
-
Stable tag: 1.1.
|
9 |
|
10 |
Easily import SEO settings from any XML or CSV file to Yoast WordPress SEO with the Yoast WordPress SEO Add-On for WP All Import.
|
11 |
|
@@ -66,6 +66,9 @@ The Yoast WordPress SEO Add-On will appear in the Step 3 of WP All Import.
|
|
66 |
|
67 |
== Changelog ==
|
68 |
|
|
|
|
|
|
|
69 |
= 1.1.6 =
|
70 |
* Added ability to import SEO data in a Taxonomy import.
|
71 |
|
4 |
License: GPLv2 or later
|
5 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
6 |
Requires at least: 4.1.0
|
7 |
+
Tested up to: 5.0
|
8 |
+
Stable tag: 1.1.7
|
9 |
|
10 |
Easily import SEO settings from any XML or CSV file to Yoast WordPress SEO with the Yoast WordPress SEO Add-On for WP All Import.
|
11 |
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
+
= 1.1.7 =
|
70 |
+
* Remove deprecated fields to fix issue with WooCommerce API.
|
71 |
+
|
72 |
= 1.1.6 =
|
73 |
* Added ability to import SEO data in a Taxonomy import.
|
74 |
|
yoast-addon.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: WP All Import - Yoast WordPress SEO Add-On
|
5 |
Plugin URI: http://www.wpallimport.com/
|
6 |
Description: Import data into Yoast WordPress SEO with WP All Import.
|
7 |
-
Version: 1.1.
|
8 |
Author: Soflyy
|
9 |
*/
|
10 |
|
@@ -256,8 +256,6 @@ switch($custom_type) {
|
|
256 |
'_yoast_wpseo_meta-robots-noindex',
|
257 |
'_yoast_wpseo_meta-robots-nofollow',
|
258 |
'_yoast_wpseo_meta-robots-adv',
|
259 |
-
'_yoast_wpseo_sitemap-include',
|
260 |
-
'_yoast_wpseo_sitemap-prio',
|
261 |
'_yoast_wpseo_canonical',
|
262 |
'_yoast_wpseo_redirect',
|
263 |
'_yoast_wpseo_opengraph-title',
|
4 |
Plugin Name: WP All Import - Yoast WordPress SEO Add-On
|
5 |
Plugin URI: http://www.wpallimport.com/
|
6 |
Description: Import data into Yoast WordPress SEO with WP All Import.
|
7 |
+
Version: 1.1.7
|
8 |
Author: Soflyy
|
9 |
*/
|
10 |
|
256 |
'_yoast_wpseo_meta-robots-noindex',
|
257 |
'_yoast_wpseo_meta-robots-nofollow',
|
258 |
'_yoast_wpseo_meta-robots-adv',
|
|
|
|
|
259 |
'_yoast_wpseo_canonical',
|
260 |
'_yoast_wpseo_redirect',
|
261 |
'_yoast_wpseo_opengraph-title',
|