CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.3.50

Version Description

(2021-03-17) = * Tweak: WordPress 5.7 compatibility tested. * Fixed: Bundled product not appearing issue solved. * Fixed: Undefined current_price issue solved.

Download this release

Release Info

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

Code changes from version 4.3.49 to 4.3.50

README.txt CHANGED
@@ -3,9 +3,9 @@ Contributors: wahid0003, webappick, mhamudul_hk, shuvo586, nayanchamp7
3
  Donate link: https://webappick.com
4
  Tags: Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Catalog, Bing Shopping, Instagram Shop, Skroutz Data Feed, xml feed, csv feed, txt feed, woocommerce product feed
5
  Requires at least: 3.6
6
- Tested Up To: 5.6.1
7
  Requires PHP: 5.6
8
- Stable tag: 4.3.49
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -498,6 +498,11 @@ Using pro version:
498
 
499
  == Changelog ==
500
 
 
 
 
 
 
501
  = 4.3.49 (2021-03-16) =
502
  * Added: Compatibility for WooCommerce Bundled Products by Iconic.
503
 
3
  Donate link: https://webappick.com
4
  Tags: Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Catalog, Bing Shopping, Instagram Shop, Skroutz Data Feed, xml feed, csv feed, txt feed, woocommerce product feed
5
  Requires at least: 3.6
6
+ Tested Up To: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 4.3.50
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
498
 
499
  == Changelog ==
500
 
501
+ = 4.3.50 (2021-03-17) =
502
+ * Tweak: WordPress 5.7 compatibility tested.
503
+ * Fixed: Bundled product not appearing issue solved.
504
+ * Fixed: Undefined current_price issue solved.
505
+
506
  = 4.3.49 (2021-03-16) =
507
  * Added: Compatibility for WooCommerce Bundled Products by Iconic.
508
 
includes/classes/class-woo-feed-products-v3.php CHANGED
@@ -228,6 +228,7 @@ class Woo_Feed_Products_v3
228
  'subscription',
229
  'variable-subscription',
230
  'bundle',
 
231
  'yith_bundle',
232
  'woosb',
233
  );
@@ -2587,7 +2588,7 @@ class Woo_Feed_Products_v3
2587
  } elseif ( $product->is_type( 'bundled' ) ) {
2588
  // this call when iconic woocommerce product bundled plugin
2589
  // activated
2590
- $price = $this->iconic_bundle_product_price( $product, 'iconic-current-price');
2591
  } else {
2592
  $current_price = $product->get_price();
2593
  }
@@ -2889,7 +2890,7 @@ class Woo_Feed_Products_v3
2889
  }
2890
  }
2891
 
2892
- return $this->getWPMLPrice( $product, $price, '_price');
2893
  }
2894
 
2895
 
228
  'subscription',
229
  'variable-subscription',
230
  'bundle',
231
+ 'bundled',
232
  'yith_bundle',
233
  'woosb',
234
  );
2588
  } elseif ( $product->is_type( 'bundled' ) ) {
2589
  // this call when iconic woocommerce product bundled plugin
2590
  // activated
2591
+ $current_price = $this->iconic_bundle_product_price( $product, 'iconic-current-price');
2592
  } else {
2593
  $current_price = $product->get_price();
2594
  }
2890
  }
2891
  }
2892
 
2893
+ return $price;
2894
  }
2895
 
2896
 
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.49
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
@@ -20,7 +20,7 @@
20
  *
21
  * WP Requirement & Test
22
  * Requires at least: 4.4
23
- * Tested up to: 5.6
24
  * Requires PHP: 5.6
25
  *
26
  * WC Requirement & Test
@@ -38,7 +38,7 @@ if ( ! defined( 'WOO_FEED_FREE_VERSION' ) ) {
38
  * @var string
39
  * @since 3.1.6
40
  */
41
- define( 'WOO_FEED_FREE_VERSION', '4.3.49' );
42
  }
43
 
44
  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.50
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
20
  *
21
  * WP Requirement & Test
22
  * Requires at least: 4.4
23
+ * Tested up to: 5.7
24
  * Requires PHP: 5.6
25
  *
26
  * WC Requirement & Test
38
  * @var string
39
  * @since 3.1.6
40
  */
41
+ define( 'WOO_FEED_FREE_VERSION', '4.3.50' );
42
  }
43
 
44
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {