CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.4.24

Version Description

(2021-09-15) = * Fixed: UTF-8 character encoding issue fixed.

Download this release

Release Info

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

Code changes from version 4.4.23 to 4.4.24

Files changed (3) hide show
  1. README.txt +4 -1
  2. includes/helper.php +4 -2
  3. woo-feed.php +2 -2
README.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Cata
5
  Requires at least: 4.4
6
  Tested Up To: 5.8
7
  Requires PHP: 5.6
8
- Stable tag: 4.4.23
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.23 (2021-09-09) =
520
  * Added: Google Merchant new attributes added to Google Shopping template ( product_weight, product_height, product_length, product_weight, ships_from_country ).
521
  * Improved: Product Title attribute and availability attribute updated according to Google Shopping template.
5
  Requires at least: 4.4
6
  Tested Up To: 5.8
7
  Requires PHP: 5.6
8
+ Stable tag: 4.4.24
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.24 (2021-09-15) =
520
+ * Fixed: UTF-8 character encoding issue fixed.
521
+
522
  = 4.4.23 (2021-09-09) =
523
  * Added: Google Merchant new attributes added to Google Shopping template ( product_weight, product_height, product_length, product_weight, ships_from_country ).
524
  * Improved: Product Title attribute and availability attribute updated according to Google Shopping template.
includes/helper.php CHANGED
@@ -5644,7 +5644,8 @@ if( ! function_exists('woo_feed_filter_product_description_callback') ) {
5644
 
5645
  if( isset($config['provider']) && woo_feed_is_google_group_merchant($config['provider']) ) {
5646
  if( strlen($description) > 5000 ) {
5647
- $description = substr($description, 0, 4999);
 
5648
  }
5649
  }
5650
 
@@ -5668,7 +5669,8 @@ if( ! function_exists( 'woo_feed_filter_product_title' ) ) {
5668
 
5669
  if( isset($config['provider']) && in_array($config['provider'], ['google', 'facebook', 'pinterest', 'bing']) ) {
5670
  if( strlen($title) > 150 ) {
5671
- $title = substr($title, 0, 149);
 
5672
  }
5673
  }
5674
 
5644
 
5645
  if( isset($config['provider']) && woo_feed_is_google_group_merchant($config['provider']) ) {
5646
  if( strlen($description) > 5000 ) {
5647
+ for( $I = 4999; $description[$I] != ' ' ; $I-- );
5648
+ $description = substr($description, 0, $I);
5649
  }
5650
  }
5651
 
5669
 
5670
  if( isset($config['provider']) && in_array($config['provider'], ['google', 'facebook', 'pinterest', 'bing']) ) {
5671
  if( strlen($title) > 150 ) {
5672
+ for( $I = 149; $title[$I] != ' ' ; $I-- );
5673
+ $title = substr($title, 0, $I);
5674
  }
5675
  }
5676
 
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.23
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
@@ -42,7 +42,7 @@ if ( ! defined( 'WOO_FEED_FREE_VERSION' ) ) {
42
  * @var string
43
  * @since 3.1.6
44
  */
45
- define( 'WOO_FEED_FREE_VERSION', '4.4.23' );
46
  }
47
 
48
  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.24
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
42
  * @var string
43
  * @since 3.1.6
44
  */
45
+ define( 'WOO_FEED_FREE_VERSION', '4.4.24' );
46
  }
47
 
48
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {