CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.3.92

Version Description

(2021-06-03) = * Fixed: Facebook description issue for description attribute has been fixed.

Download this release

Release Info

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

Code changes from version 4.3.91 to 4.3.92

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.91
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -501,11 +501,14 @@ Using pro version:
501
 
502
  == Changelog ==
503
 
 
 
 
504
  = 4.3.91 (2021-06-02) =
505
  * Fixed: Review template not getting all the reviews issue has been fixed.
506
 
507
  = 4.3.90 (2021-05-31) =
508
- * Fixed: Facebook description issue fixed.
509
 
510
  = 4.3.89 (2021-05-27) =
511
  * Fixed: Set woocommerce default country to new feed.
5
  Requires at least: 3.6
6
  Tested Up To: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 4.3.92
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.92 (2021-06-03) =
505
+ * Fixed: Facebook description issue for description attribute has been fixed.
506
+
507
  = 4.3.91 (2021-06-02) =
508
  * Fixed: Review template not getting all the reviews issue has been fixed.
509
 
510
  = 4.3.90 (2021-05-31) =
511
+ * Fixed: Facebook description issue for description html attribute fixed.
512
 
513
  = 4.3.89 (2021-05-27) =
514
  * Fixed: Set woocommerce default country to new feed.
includes/classes/class-woo-feed-products-v3.php CHANGED
@@ -1782,7 +1782,7 @@ class Woo_Feed_Products_v3
1782
  $description = $this->remove_short_codes($description);
1783
 
1784
  // Add variations attributes after description to prevent Facebook error
1785
- if ( 'facebook' == $this->config['provider'] ) {
1786
  $variationInfo = explode('-', $product->get_name());
1787
  if ( isset($variationInfo[1]) ) {
1788
  $extension = $variationInfo[1];
1782
  $description = $this->remove_short_codes($description);
1783
 
1784
  // Add variations attributes after description to prevent Facebook error
1785
+ if ( 'facebook' == $this->config['provider'] && $product->is_type( 'variation' ) ) {
1786
  $variationInfo = explode('-', $product->get_name());
1787
  if ( isset($variationInfo[1]) ) {
1788
  $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.91
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.91' );
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.92
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.92' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {