Version Description
(2021-10-11) = * Fixed: Windows server file path issue fixed.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 4.4.29 |
Comparing to | |
See all releases |
Code changes from version 4.4.28 to 4.4.29
- README.txt +4 -1
- libs/autoload.php +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.
|
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.28 (2021-10-08) =
|
520 |
* Fixed: WOOCS plugin compatability issue fix.
|
521 |
* Fixed: Challan conflict issue fixed.
|
5 |
Requires at least: 4.4
|
6 |
Tested Up To: 5.8
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.4.29
|
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.29 (2021-10-11) =
|
520 |
+
* Fixed: Windows server file path issue fixed.
|
521 |
+
|
522 |
= 4.4.28 (2021-10-08) =
|
523 |
* Fixed: WOOCS plugin compatability issue fix.
|
524 |
* Fixed: Challan conflict issue fixed.
|
libs/autoload.php
CHANGED
@@ -17,9 +17,8 @@ function woo_feed_autoloader($class){
|
|
17 |
$file_path = dirname( __FILE__ ) . DIRECTORY_SEPARATOR
|
18 |
. str_replace( '\\', DIRECTORY_SEPARATOR, $class ) . '.php';
|
19 |
|
20 |
-
$file_secondary_path = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'includes'
|
21 |
-
. str_replace( '\\', DIRECTORY_SEPARATOR, $class ) . '.php';
|
22 |
-
$file_secondary_path = str_replace( 'WebAppick/Feed', '', $file_secondary_path );
|
23 |
|
24 |
if( file_exists( $file_path ) ) {
|
25 |
require_once $file_path;
|
17 |
$file_path = dirname( __FILE__ ) . DIRECTORY_SEPARATOR
|
18 |
. str_replace( '\\', DIRECTORY_SEPARATOR, $class ) . '.php';
|
19 |
|
20 |
+
$file_secondary_path = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'includes' .
|
21 |
+
DIRECTORY_SEPARATOR . str_replace( ['WebAppick\Feed', '\\'], [ '', DIRECTORY_SEPARATOR], $class ) . '.php';
|
|
|
22 |
|
23 |
if( file_exists( $file_path ) ) {
|
24 |
require_once $file_path;
|
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.
|
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.
|
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.29
|
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.29' );
|
46 |
}
|
47 |
|
48 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|