CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.4.3

Version Description

(2021-06-21) = * Fixed: Minor warning fixed. * Fixed: Latest video tutorial link at readme.

Download this release

Release Info

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

Code changes from version 4.4.2 to 4.4.3

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.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -50,7 +50,7 @@ You need a product feed if you are a retailer with an eCommerce store and want t
50
  In a word, WooCommerce Product Feed is a revolution. Yeah, it's a revolution of WooCommerce product feed technology because there are no modules or extensions that generate automatic or manual product feeds that can synchronize flexibility to shopping channels maintained by people with not much technical knowledge about WordPress. Among the thousands of reasons for choosing this WordPress plugin, we have mentioned a few of them below.
51
 
52
  **Google Merchant Feed Upload**
53
- [youtube https://www.youtube.com/watch?v=PTUYgF7DwEo]
54
 
55
  **EASY USER INTERFACE:**
56
 
@@ -516,6 +516,10 @@ Using pro version:
516
 
517
  == Changelog ==
518
 
 
 
 
 
519
  = 4.4.2 (2021-06-20) =
520
  * Fixed: Shipping cost empty instead of 0 for free shipping, issue has been fixed.
521
  * Fixed: Warning about get_class object has been fixed.
5
  Requires at least: 3.6
6
  Tested Up To: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 4.4.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
50
  In a word, WooCommerce Product Feed is a revolution. Yeah, it's a revolution of WooCommerce product feed technology because there are no modules or extensions that generate automatic or manual product feeds that can synchronize flexibility to shopping channels maintained by people with not much technical knowledge about WordPress. Among the thousands of reasons for choosing this WordPress plugin, we have mentioned a few of them below.
51
 
52
  **Google Merchant Feed Upload**
53
+ [youtube https://www.youtube.com/watch?v=QRTvrDJm4mI]
54
 
55
  **EASY USER INTERFACE:**
56
 
516
 
517
  == Changelog ==
518
 
519
+ = 4.4.3 (2021-06-21) =
520
+ * Fixed: Minor warning fixed.
521
+ * Fixed: Latest video tutorial link at readme.
522
+
523
  = 4.4.2 (2021-06-20) =
524
  * Fixed: Shipping cost empty instead of 0 for free shipping, issue has been fixed.
525
  * Fixed: Warning about get_class object has been fixed.
includes/classes/class-woo-feed-shipping.php CHANGED
@@ -188,7 +188,7 @@ class Woo_Feed_Shipping {
188
  settype($minimum_fee, "double");
189
 
190
  // Only Free Shipping when product price is over or equal to minimum order fee
191
- if ($this->product->get_price() >= $minimum_fee) {
192
  $shipping['free'] = "yes";
193
  $shipping['price'] = 0;
194
  }
@@ -210,14 +210,12 @@ class Woo_Feed_Shipping {
210
  }else {
211
  $shipping_cost = $this->get_shipping_cost($shipping);
212
  $shipping['price'] = $shipping_cost;
213
- }
214
-
215
- }else {
216
  unset( $shipping );
217
  continue 3;
218
- }
219
-
220
- }
221
  $shipping_info[] = $shipping;
222
  }
223
  }
188
  settype($minimum_fee, "double");
189
 
190
  // Only Free Shipping when product price is over or equal to minimum order fee
191
+ if ( $this->product->get_price() >= $minimum_fee ) {
192
  $shipping['free'] = "yes";
193
  $shipping['price'] = 0;
194
  }
210
  }else {
211
  $shipping_cost = $this->get_shipping_cost($shipping);
212
  $shipping['price'] = $shipping_cost;
213
+ }
214
+ }else {
 
215
  unset( $shipping );
216
  continue 3;
217
+ }
218
+ }
 
219
  $shipping_info[] = $shipping;
220
  }
221
  }
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.2
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.2' );
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.3
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.3' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {