Version Description
Changed the Google Product Review feed node order
Download this release
Release Info
Developer | jorisverwater |
Plugin | Product Feed PRO for WooCommerce |
Version | 8.3.5 |
Comparing to | |
See all releases |
Code changes from version 8.3.4 to 8.3.5
- classes/class-get-products.php +16 -7
- readme.txt +7 -1
- woocommerce-sea.php +2 -2
classes/class-get-products.php
CHANGED
@@ -1320,12 +1320,9 @@ class WooSEA_Get_Products {
|
|
1320 |
foreach($review_comp as $rck => $rcv){
|
1321 |
$nodes = explode("##", $rcv);
|
1322 |
$nodes = str_replace("::", "", $nodes);
|
1323 |
-
|
1324 |
if($nodes[0] == "REVIEW_RATINGS"){
|
1325 |
-
|
1326 |
-
$over = $productz->ratings->addChild('overall', $nodes[1]);
|
1327 |
-
$over->addAttribute('min', '1');
|
1328 |
-
$over->addAttribute('max', '5');
|
1329 |
} elseif($nodes[0] == "REVIEW_URL"){
|
1330 |
$rev_url = $productz->addChild(strtolower($nodes[0]), htmlspecialchars($nodes[1]));
|
1331 |
$rev_url->addAttribute('type', 'singleton');
|
@@ -1363,9 +1360,21 @@ class WooSEA_Get_Products {
|
|
1363 |
$rev = $productz->addChild(strtolower($nodes[0]), $content);
|
1364 |
}
|
1365 |
}
|
1366 |
-
|
1367 |
}
|
1368 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1369 |
$yo = $productz->addChild('products');
|
1370 |
$po = $yo->addChild('product');
|
1371 |
|
1320 |
foreach($review_comp as $rck => $rcv){
|
1321 |
$nodes = explode("##", $rcv);
|
1322 |
$nodes = str_replace("::", "", $nodes);
|
1323 |
+
|
1324 |
if($nodes[0] == "REVIEW_RATINGS"){
|
1325 |
+
// Do nothing
|
|
|
|
|
|
|
1326 |
} elseif($nodes[0] == "REVIEW_URL"){
|
1327 |
$rev_url = $productz->addChild(strtolower($nodes[0]), htmlspecialchars($nodes[1]));
|
1328 |
$rev_url->addAttribute('type', 'singleton');
|
1360 |
$rev = $productz->addChild(strtolower($nodes[0]), $content);
|
1361 |
}
|
1362 |
}
|
|
|
1363 |
}
|
1364 |
+
|
1365 |
+
foreach($review_comp as $rck => $rcv){
|
1366 |
+
$nodes = explode("##", $rcv);
|
1367 |
+
$nodes = str_replace("::", "", $nodes);
|
1368 |
+
|
1369 |
+
if($nodes[0] == "REVIEW_RATINGS"){
|
1370 |
+
$rev = $productz->addChild('ratings');
|
1371 |
+
$over = $productz->ratings->addChild('overall', $nodes[1]);
|
1372 |
+
$over->addAttribute('min', '1');
|
1373 |
+
$over->addAttribute('max', '5');
|
1374 |
+
}
|
1375 |
+
}
|
1376 |
+
|
1377 |
+
|
1378 |
$yo = $productz->addChild('products');
|
1379 |
$po = $yo->addChild('product');
|
1380 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
|
|
5 |
Tags: Product Feed, Google Shopping, Google Shopping Feed, WooCommerce Product Feed, WooCommerce Product Feed PRO, Bing Shopping, Bing product feed, Bing remarking, Google Merchant Feed, Google DRM Feed, Google Dynamic Remarketing Feed, Facebook feed, Google feed, Bing feed, Facebook Product Feed, Facebook Dynamic remarketing, Data Feed, WooCommerce Feed, XML product feed, CSV product feed, TSV, TXT product feed, comparison shopping engines, comparison shopping websites, vergelijk.nl, vergelijk.be, vertaa.fi, beslist.nl, kieskeurig.nl, bol.com, raketten, pricerunner, pricegrabber, Buy, leGuide, Kelkoo, Twenga, Yandex, Etsy, Dealtime, Shopzilla, Billiger, Google Product Review feed
|
6 |
Requires at least: 4.5
|
7 |
Tested up to: 5.4
|
8 |
-
Stable tag: 8.3.
|
9 |
|
10 |
== Description ==
|
11 |
|
@@ -313,6 +313,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
|
|
313 |
|
314 |
=== Changelog ===
|
315 |
|
|
|
|
|
|
|
316 |
= 8.3.4 (2020-06-12) =
|
317 |
* Removed line-breaks from the description and short description attribute
|
318 |
|
@@ -2654,6 +2657,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
|
|
2654 |
|
2655 |
== Upgrade Notice ==
|
2656 |
|
|
|
|
|
|
|
2657 |
= 8.3.4 =
|
2658 |
Removed line-breaks from the description and short description attribute
|
2659 |
|
5 |
Tags: Product Feed, Google Shopping, Google Shopping Feed, WooCommerce Product Feed, WooCommerce Product Feed PRO, Bing Shopping, Bing product feed, Bing remarking, Google Merchant Feed, Google DRM Feed, Google Dynamic Remarketing Feed, Facebook feed, Google feed, Bing feed, Facebook Product Feed, Facebook Dynamic remarketing, Data Feed, WooCommerce Feed, XML product feed, CSV product feed, TSV, TXT product feed, comparison shopping engines, comparison shopping websites, vergelijk.nl, vergelijk.be, vertaa.fi, beslist.nl, kieskeurig.nl, bol.com, raketten, pricerunner, pricegrabber, Buy, leGuide, Kelkoo, Twenga, Yandex, Etsy, Dealtime, Shopzilla, Billiger, Google Product Review feed
|
6 |
Requires at least: 4.5
|
7 |
Tested up to: 5.4
|
8 |
+
Stable tag: 8.3.5
|
9 |
|
10 |
== Description ==
|
11 |
|
313 |
|
314 |
=== Changelog ===
|
315 |
|
316 |
+
= 8.3.5 (2020-06-13) =
|
317 |
+
* Changed the Google Product Review feed node order
|
318 |
+
|
319 |
= 8.3.4 (2020-06-12) =
|
320 |
* Removed line-breaks from the description and short description attribute
|
321 |
|
2657 |
|
2658 |
== Upgrade Notice ==
|
2659 |
|
2660 |
+
= 8.3.5 =
|
2661 |
+
Changed the Google Product Review feed node order
|
2662 |
+
|
2663 |
= 8.3.4 =
|
2664 |
Removed line-breaks from the description and short description attribute
|
2665 |
|
woocommerce-sea.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Product Feed PRO for WooCommerce
|
4 |
-
* Version: 8.3.
|
5 |
* Plugin URI: https://www.adtribes.io/support/?utm_source=wpadmin&utm_medium=plugin&utm_campaign=woosea_product_feed_pro
|
6 |
* Description: Configure and maintain your WooCommerce product feeds for Google Shopping, Facebook, Remarketing, Bing, Yandex, Comparison shopping websites and over a 100 channels more.
|
7 |
* Author: AdTribes.io
|
@@ -48,7 +48,7 @@ if (!defined('ABSPATH')) {
|
|
48 |
* Plugin versionnumber, please do not override.
|
49 |
* Define some constants
|
50 |
*/
|
51 |
-
define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '8.3.
|
52 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
|
53 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
|
54 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Product Feed PRO for WooCommerce
|
4 |
+
* Version: 8.3.5
|
5 |
* Plugin URI: https://www.adtribes.io/support/?utm_source=wpadmin&utm_medium=plugin&utm_campaign=woosea_product_feed_pro
|
6 |
* Description: Configure and maintain your WooCommerce product feeds for Google Shopping, Facebook, Remarketing, Bing, Yandex, Comparison shopping websites and over a 100 channels more.
|
7 |
* Author: AdTribes.io
|
48 |
* Plugin versionnumber, please do not override.
|
49 |
* Define some constants
|
50 |
*/
|
51 |
+
define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '8.3.5' );
|
52 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
|
53 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
|
54 |
|