CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.4.69

Version Description

(2022-07-19) = * Fixed: Fatal error issue solved when WooCommerce is not active

Download this release

Release Info

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

Code changes from version 4.4.68 to 4.4.69

README.txt CHANGED
@@ -5,7 +5,7 @@ Tags: WooCommerce Product Feed, WooCommerce, Google Shopping, Google Merchant, F
5
  Requires at least: 4.4
6
  Tested Up To: 6.0
7
  Requires PHP: 5.6
8
- Stable tag: 4.4.68
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -589,7 +589,10 @@ Using pro version:
589
  4. Category Mapping
590
 
591
  == Changelog ==
592
- = 4.4.67 (2022-06-29) =
 
 
 
593
  * Fixed: Feed import issue solved
594
  * Fixed: Feed template loading issue solved
595
  * Fixed: Google Review feed issue fixed
5
  Requires at least: 4.4
6
  Tested Up To: 6.0
7
  Requires PHP: 5.6
8
+ Stable tag: 4.4.69
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
589
  4. Category Mapping
590
 
591
  == Changelog ==
592
+ = 4.4.69 (2022-07-19) =
593
+ * Fixed: Fatal error issue solved when WooCommerce is not active
594
+
595
+ = 4.4.68 (2022-06-29) =
596
  * Fixed: Feed import issue solved
597
  * Fixed: Feed template loading issue solved
598
  * Fixed: Google Review feed issue fixed
includes/classes/class-woo-feed-constants.php CHANGED
@@ -23,7 +23,7 @@ if( ! class_exists("Woo_Feed_Constants") ) {
23
  * @var string
24
  * @since 3.1.6
25
  */
26
- define( 'WOO_FEED_FREE_VERSION', '4.4.68' );
27
  }
28
 
29
  if ( ! defined( 'WOO_FEED_FREE_PATH' ) ) {
23
  * @var string
24
  * @since 3.1.6
25
  */
26
+ define( 'WOO_FEED_FREE_VERSION', '4.4.69' );
27
  }
28
 
29
  if ( ! defined( 'WOO_FEED_FREE_PATH' ) ) {
includes/log-helper.php CHANGED
@@ -116,7 +116,9 @@ if ( ! function_exists( 'woo_feed_log' ) ) {
116
  }
117
  $loggers = [ woo_feed_get_logger() ];
118
  if ( true === $wc_log ) {
119
- $loggers[] = wc_get_logger();
 
 
120
  }
121
  foreach ( $loggers as $logger ) {
122
  if ( is_callable( [ $logger, $level ] ) ) {
116
  }
117
  $loggers = [ woo_feed_get_logger() ];
118
  if ( true === $wc_log ) {
119
+ if( function_exists( 'wc_get_logger' ) ) {
120
+ $loggers[] = wc_get_logger();
121
+ }
122
  }
123
  foreach ( $loggers as $logger ) {
124
  if ( is_callable( [ $logger, $level ] ) ) {
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.68
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
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.69
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2