CTX Feed – WooCommerce Product Feed Manager Plugin - Version 3.7.6

Version Description

(2020-08-25) = * Fix: XML Opening and Ending tag mismatch issue fixed.

Download this release

Release Info

Developer wahid0003
Plugin Icon 128x128 CTX Feed – WooCommerce Product Feed Manager Plugin
Version 3.7.6
Comparing to
See all releases

Code changes from version 3.7.5 to 3.7.6

README.txt CHANGED
@@ -5,7 +5,7 @@ Tags:product feed,woocommerce product feed,google shopping feed,google shopping,
5
  Requires at least: 3.6
6
  Tested Up To: 5.5
7
  Requires PHP: 5.6
8
- Stable tag: 3.7.5
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -308,6 +308,9 @@ Using pro version:
308
 
309
  == Changelog ==
310
 
 
 
 
311
  = 3.7.5 (2020-08-24) =
312
  * Tweak: do_shortcode() function applied to product title to filter shortcodes through their hooks.
313
 
5
  Requires at least: 3.6
6
  Tested Up To: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 3.7.6
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
308
 
309
  == Changelog ==
310
 
311
+ = 3.7.6 (2020-08-25) =
312
+ * Fix: XML Opening and Ending tag mismatch issue fixed.
313
+
314
  = 3.7.5 (2020-08-24) =
315
  * Tweak: do_shortcode() function applied to product title to filter shortcodes through their hooks.
316
 
includes/classes/class-woo-feed-products-v3.php CHANGED
@@ -484,7 +484,7 @@ class Woo_Feed_Products_v3
484
  // Get Product Attribute values by type and assign to product array
485
  foreach ($this->config['attributes'] as $attr_key => $attribute) {
486
 
487
- $merchant_attribute = $this->config['mattributes'][$attr_key];
488
 
489
  if ($this->exclude_current_attribute($product, $merchant_attribute, $attribute)) {
490
  continue;
@@ -611,6 +611,10 @@ class Woo_Feed_Products_v3
611
  */
612
  protected function exclude_current_attribute($product, $merchant_attribute, $product_attribute, $feedType = 'xml')
613
  {
 
 
 
 
614
  if (
615
  $feedType == $this->config['feedType'] &&
616
  in_array($this->config['provider'], array_keys($this->skipped_merchant_attributes)) &&
484
  // Get Product Attribute values by type and assign to product array
485
  foreach ($this->config['attributes'] as $attr_key => $attribute) {
486
 
487
+ $merchant_attribute = isset($this->config['mattributes'][$attr_key])?$this->config['mattributes'][$attr_key]:'';
488
 
489
  if ($this->exclude_current_attribute($product, $merchant_attribute, $attribute)) {
490
  continue;
611
  */
612
  protected function exclude_current_attribute($product, $merchant_attribute, $product_attribute, $feedType = 'xml')
613
  {
614
+ if(empty($merchant_attribute)){
615
+ return true;
616
+ }
617
+
618
  if (
619
  $feedType == $this->config['feedType'] &&
620
  in_array($this->config['provider'], array_keys($this->skipped_merchant_attributes)) &&
woo-feed.php CHANGED
@@ -11,7 +11,7 @@
11
  * Plugin URI: https://webappick.com/
12
  * Description: Easily generate woocommerce product feed for any marketing channel like Google Shopping(Merchant), Facebook Remarketing, Bing, eBay & more. Support 100+ Merchants.
13
  *
14
- * Version: 3.7.5
15
  * Author: WebAppick
16
  * Author URI: https://webappick.com/
17
  * License: GPL v2
@@ -39,7 +39,7 @@ if ( ! defined( 'WOO_FEED_FREE_VERSION' ) ) {
39
  * @var string
40
  * @since 3.1.6
41
  */
42
- define( 'WOO_FEED_FREE_VERSION', '3.7.5' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
11
  * Plugin URI: https://webappick.com/
12
  * Description: Easily generate woocommerce product feed for any marketing channel like Google Shopping(Merchant), Facebook Remarketing, Bing, eBay & more. Support 100+ Merchants.
13
  *
14
+ * Version: 3.7.6
15
  * Author: WebAppick
16
  * Author URI: https://webappick.com/
17
  * License: GPL v2
39
  * @var string
40
  * @since 3.1.6
41
  */
42
+ define( 'WOO_FEED_FREE_VERSION', '3.7.6' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {