CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.4.10

Version Description

(2021-07-01) = * Fixed: Gtin identifiers with attribute addition.

Download this release

Release Info

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

Code changes from version 4.4.9 to 4.4.10

README.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Cata
5
  Requires at least: 3.6
6
  Tested Up To: 5.7
7
  Requires PHP: 5.6
8
- Stable tag: 4.4.9
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -516,6 +516,9 @@ Using pro version:
516
 
517
  == Changelog ==
518
 
 
 
 
519
  = 4.4.9 (2021-06-30) =
520
  * Fixed: Gtin missing issue has been fixed.
521
  * Fixed: Availability attribute value should return 0 when out of stock product quantity is empty.
5
  Requires at least: 3.6
6
  Tested Up To: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 4.4.10
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
516
 
517
  == Changelog ==
518
 
519
+ = 4.4.10 (2021-07-01) =
520
+ * Fixed: Gtin identifiers with attribute addition.
521
+
522
  = 4.4.9 (2021-06-30) =
523
  * Fixed: Gtin missing issue has been fixed.
524
  * Fixed: Availability attribute value should return 0 when out of stock product quantity is empty.
includes/classes/class-woo-feed-products-v3.php CHANGED
@@ -1433,7 +1433,7 @@ class Woo_Feed_Products_v3
1433
 
1434
  if ( method_exists($this, $attribute) ) {
1435
  $output = call_user_func_array(array( $this, $attribute ), array( $product ));
1436
- } elseif ( false !== strpos( $attribute, self::PRODUCT_CUSTOM_IDENTIFIER ) || woo_feed_strpos_array(array( 'gtin', 'ean', 'mpn' ), $attribute) ) {
1437
  $output = $this->getCustomField( $product, $attribute );
1438
  } elseif ( false !== strpos($attribute, self::PRODUCT_ATTRIBUTE_PREFIX) ) {
1439
  $attribute = str_replace(self::PRODUCT_ATTRIBUTE_PREFIX, '', $attribute);
1433
 
1434
  if ( method_exists($this, $attribute) ) {
1435
  $output = call_user_func_array(array( $this, $attribute ), array( $product ));
1436
+ } elseif ( false !== strpos( $attribute, self::PRODUCT_CUSTOM_IDENTIFIER ) || woo_feed_strpos_array(array( '_identifier_gtin', '_identifier_ean', '_identifier_mpn' ), $attribute) ) {
1437
  $output = $this->getCustomField( $product, $attribute );
1438
  } elseif ( false !== strpos($attribute, self::PRODUCT_ATTRIBUTE_PREFIX) ) {
1439
  $attribute = str_replace(self::PRODUCT_ATTRIBUTE_PREFIX, '', $attribute);
woo-feed.php CHANGED
@@ -10,7 +10,7 @@
10
  * Plugin Name: CTX Feed
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
- * Version: 4.4.9
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * 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', '4.4.9' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
10
  * Plugin Name: CTX Feed
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
+ * Version: 4.4.10
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
39
  * @var string
40
  * @since 3.1.6
41
  */
42
+ define( 'WOO_FEED_FREE_VERSION', '4.4.10' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {