CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.3.90

Version Description

(2021-05-31) = * Fixed: Facebook description issue fixed.

Download this release

Release Info

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

Code changes from version 4.3.89 to 4.3.90

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.3.89
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -501,6 +501,9 @@ Using pro version:
501
 
502
  == Changelog ==
503
 
 
 
 
504
  = 4.3.89 (2021-05-27) =
505
  * Fixed: Set woocommerce default country to new feed.
506
 
5
  Requires at least: 3.6
6
  Tested Up To: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 4.3.90
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
501
 
502
  == Changelog ==
503
 
504
+ = 4.3.90 (2021-05-31) =
505
+ * Fixed: Facebook description issue fixed.
506
+
507
  = 4.3.89 (2021-05-27) =
508
  * Fixed: Set woocommerce default country to new feed.
509
 
includes/classes/class-woo-feed-products-v3.php CHANGED
@@ -1819,7 +1819,7 @@ class Woo_Feed_Products_v3
1819
  $description = $this->remove_short_codes( $description );
1820
 
1821
  // Add variations attributes after description to prevent Facebook error
1822
- if ( 'facebook' === $this->config['provider'] ) {
1823
  $variationInfo = explode( '-', $product->get_name() );
1824
  if ( isset( $variationInfo[1] ) ) {
1825
  $extension = $variationInfo[1];
1819
  $description = $this->remove_short_codes( $description );
1820
 
1821
  // Add variations attributes after description to prevent Facebook error
1822
+ if ( 'facebook' === $this->config['provider'] && $product->is_type( 'variation' ) ) {
1823
  $variationInfo = explode( '-', $product->get_name() );
1824
  if ( isset( $variationInfo[1] ) ) {
1825
  $extension = $variationInfo[1];
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.3.89
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.3.89' );
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.3.90
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.3.90' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {