Product Feed PRO for WooCommerce - Version 8.3.1

Version Description

(2020-06-09) = * The Facebook DOM solution resulted in duplicate products in feeds. This issue has been solved now.

Download this release

Release Info

Developer jorisverwater
Plugin Icon 128x128 Product Feed PRO for WooCommerce
Version 8.3.1
Comparing to
See all releases

Code changes from version 8.3.0 to 8.3.1

classes/class-get-products.php CHANGED
@@ -1147,16 +1147,13 @@ class WooSEA_Get_Products {
1147
  }
1148
 
1149
  if(is_object($xml)){
1150
- //if($feed_config['fields'] == "facebook_drm"){
1151
- // Revert to DOM to preserve XML whitespaces and line-breaks
1152
- $dom = dom_import_simplexml($xml)->ownerDocument;
1153
- $dom->formatOutput = true;
1154
- $dom->preserveWhiteSpace = false;
1155
- $dom->loadXML( $dom->saveXML());
1156
- $dom->save($file);
1157
- //} else {
1158
- // $xml->asXML($file);
1159
- //}
1160
  }
1161
  unset($products);
1162
  }
1147
  }
1148
 
1149
  if(is_object($xml)){
1150
+ // Revert to DOM to preserve XML whitespaces and line-breaks
1151
+ $dom = dom_import_simplexml($xml)->ownerDocument;
1152
+ $dom->formatOutput = true;
1153
+ $dom->preserveWhiteSpace = false;
1154
+ $dom->loadXML( $dom->saveXML());
1155
+ $dom->save($file);
1156
+ unset($dom);
 
 
 
1157
  }
1158
  unset($products);
1159
  }
js/woosea_manage.js CHANGED
@@ -16,6 +16,7 @@ jQuery(document).ready(function($) {
16
  if (get_value == 'woosea_manage_feed') {
17
  $(document).on('ready',function(){
18
  // Check if feed is processing
 
19
  jQuery.ajax({
20
  method: "POST",
21
  url: ajaxurl,
16
  if (get_value == 'woosea_manage_feed') {
17
  $(document).on('ready',function(){
18
  // Check if feed is processing
19
+
20
  jQuery.ajax({
21
  method: "POST",
22
  url: ajaxurl,
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.0
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.0 (2020-06-07) =
317
  * When our plugin is enabled and the structured data snippet feature is disabled then use the normal default WooCommerce structured data
318
 
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.1
9
 
10
  == Description ==
11
 
313
 
314
  === Changelog ===
315
 
316
+ = 8.3.1 (2020-06-09) =
317
+ * The Facebook DOM solution resulted in duplicate products in feeds. This issue has been solved now.
318
+
319
  = 8.3.0 (2020-06-07) =
320
  * When our plugin is enabled and the structured data snippet feature is disabled then use the normal default WooCommerce structured data
321
 
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 8.3.0
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.0' );
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.1
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.1' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54