Version Description
(2021-01-28) = * Fixed: Class Woo_Feed_Log_Handler_File not exist solved.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 4.3.23 |
Comparing to | |
See all releases |
Code changes from version 4.3.22 to 4.3.23
- README.txt +4 -1
- includes/log-helper.php +11 -1
- woo-feed.php +2 -2
README.txt
CHANGED
@@ -8,7 +8,7 @@ Google Product Review feed, product variations, rakuteen, shopping, skroutz, TSV
|
|
8 |
Requires at least: 3.6
|
9 |
Tested Up To: 5.6
|
10 |
Requires PHP: 5.6
|
11 |
-
Stable tag: 4.3.
|
12 |
License: GPLv2 or later
|
13 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
14 |
|
@@ -308,6 +308,9 @@ Using pro version:
|
|
308 |
|
309 |
== Changelog ==
|
310 |
|
|
|
|
|
|
|
311 |
= 4.3.22 (2021-01-26) =
|
312 |
* Added: Snapchat template added.
|
313 |
|
8 |
Requires at least: 3.6
|
9 |
Tested Up To: 5.6
|
10 |
Requires PHP: 5.6
|
11 |
+
Stable tag: 4.3.23
|
12 |
License: GPLv2 or later
|
13 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
14 |
|
308 |
|
309 |
== Changelog ==
|
310 |
|
311 |
+
= 4.3.23 (2021-01-28) =
|
312 |
+
* Fixed: Class Woo_Feed_Log_Handler_File not exist solved.
|
313 |
+
|
314 |
= 4.3.22 (2021-01-26) =
|
315 |
* Added: Snapchat template added.
|
316 |
|
includes/log-helper.php
CHANGED
@@ -28,9 +28,14 @@ if ( ! function_exists( 'woo_feed_get_logger' ) ) {
|
|
28 |
*
|
29 |
* @since 3.2.1
|
30 |
*
|
31 |
-
* @return
|
32 |
*/
|
33 |
function woo_feed_get_logger() {
|
|
|
|
|
|
|
|
|
|
|
34 |
static $logger = null;
|
35 |
if ( null !== $logger && is_a( $logger, 'WC_Logger' ) ) {
|
36 |
return $logger;
|
@@ -157,6 +162,11 @@ if ( ! function_exists( 'woo_feed_delete_log' ) ) {
|
|
157 |
* @return bool
|
158 |
*/
|
159 |
function woo_feed_delete_log( $source, $handle = false ) {
|
|
|
|
|
|
|
|
|
|
|
160 |
try {
|
161 |
if ( 'woo-feed-fatal-errors' === $source ) {
|
162 |
// fatal error are also logged in wc-logs dir.
|
28 |
*
|
29 |
* @since 3.2.1
|
30 |
*
|
31 |
+
* @return mixed
|
32 |
*/
|
33 |
function woo_feed_get_logger() {
|
34 |
+
|
35 |
+
if( ! class_exists( "Woo_Feed_Log_Handler_File" ) ) {
|
36 |
+
return false;
|
37 |
+
}
|
38 |
+
|
39 |
static $logger = null;
|
40 |
if ( null !== $logger && is_a( $logger, 'WC_Logger' ) ) {
|
41 |
return $logger;
|
162 |
* @return bool
|
163 |
*/
|
164 |
function woo_feed_delete_log( $source, $handle = false ) {
|
165 |
+
|
166 |
+
if( ! class_exists( "Woo_Feed_Log_Handler_File" ) ) {
|
167 |
+
return false;
|
168 |
+
}
|
169 |
+
|
170 |
try {
|
171 |
if ( 'woo-feed-fatal-errors' === $source ) {
|
172 |
// fatal error are also logged in wc-logs dir.
|
woo-feed.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: WooCommerce Product 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.
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
@@ -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.
|
42 |
}
|
43 |
|
44 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|
10 |
* Plugin Name: WooCommerce Product 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.23
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
38 |
* @var string
|
39 |
* @since 3.1.6
|
40 |
*/
|
41 |
+
define( 'WOO_FEED_FREE_VERSION', '4.3.23' );
|
42 |
}
|
43 |
|
44 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|