CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.4.62

Version Description

(2022-05-25) = * Fixed: Fixing autoload, SuperGlobal, and external links

Download this release

Release Info

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

Code changes from version 4.4.61 to 4.4.62

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: 5.9
7
  Requires PHP: 5.6
8
- Stable tag: 4.4.61
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -590,6 +590,9 @@ Using pro version:
590
 
591
  == Changelog ==
592
 
 
 
 
593
  = 4.4.61 (2022-05-23) =
594
  * Updated: Updated readme content.
595
  * Fixed: Idealo feed generation stuck
5
  Requires at least: 4.4
6
  Tested Up To: 5.9
7
  Requires PHP: 5.6
8
+ Stable tag: 4.4.62
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
590
 
591
  == Changelog ==
592
 
593
+ = 4.4.62 (2022-05-25) =
594
+ * Fixed: Fixing autoload, SuperGlobal, and external links
595
+
596
  = 4.4.61 (2022-05-23) =
597
  * Updated: Updated readme content.
598
  * Fixed: Idealo feed generation stuck
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.61' );
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.62' );
27
  }
28
 
29
  if ( ! defined( 'WOO_FEED_FREE_PATH' ) ) {
libs/autoload.php CHANGED
@@ -14,10 +14,10 @@ function woo_feed_autoloader( $class ) {
14
 
15
  if ( strpos( $class, 'WebAppick' ) !== false ) {
16
 
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 ) ) {
14
 
15
  if ( strpos( $class, 'WebAppick' ) !== false ) {
16
 
17
+ $file_path = __DIR__ . DIRECTORY_SEPARATOR
18
  . str_replace( '\\', DIRECTORY_SEPARATOR, $class ) . '.php';
19
 
20
+ $file_secondary_path = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'includes' .
21
  DIRECTORY_SEPARATOR . str_replace( [ 'WebAppick\Feed', '\\' ], [ '', DIRECTORY_SEPARATOR ], $class ) . '.php';
22
 
23
  if ( file_exists( $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.61
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
@@ -43,7 +43,7 @@ if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
43
  define( 'WOO_FEED_FREE_FILE', __FILE__ );
44
  }
45
 
46
- require_once dirname(__FILE__) . '/includes/classes/class-woo-feed-constants.php';
47
  Woo_Feed_Constants::defined_constants();
48
 
49
  /*
@@ -52,13 +52,13 @@ Woo_Feed_Constants::defined_constants();
52
  * @since 4.7
53
  *
54
  * */
55
- require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR
56
  . 'libs' . DIRECTORY_SEPARATOR
57
  . 'autoload.php';
58
 
59
  // Attributes executable file [Manages newly added attributes]
60
  // @TODO Refactor all the attributes to a single file.
61
- require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR
62
  . 'libs' . DIRECTORY_SEPARATOR
63
  . 'WebAppick' . DIRECTORY_SEPARATOR
64
  . 'Attributes' . DIRECTORY_SEPARATOR
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.62
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
43
  define( 'WOO_FEED_FREE_FILE', __FILE__ );
44
  }
45
 
46
+ require_once __DIR__ . '/includes/classes/class-woo-feed-constants.php';
47
  Woo_Feed_Constants::defined_constants();
48
 
49
  /*
52
  * @since 4.7
53
  *
54
  * */
55
+ require_once __DIR__ . DIRECTORY_SEPARATOR
56
  . 'libs' . DIRECTORY_SEPARATOR
57
  . 'autoload.php';
58
 
59
  // Attributes executable file [Manages newly added attributes]
60
  // @TODO Refactor all the attributes to a single file.
61
+ require_once __DIR__ . DIRECTORY_SEPARATOR
62
  . 'libs' . DIRECTORY_SEPARATOR
63
  . 'WebAppick' . DIRECTORY_SEPARATOR
64
  . 'Attributes' . DIRECTORY_SEPARATOR