CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.3.66

Version Description

(2021-04-13) = * Fixed: Brand by ctx feed missing in the dropdown issue has been fixed.

Download this release

Release Info

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

Code changes from version 4.3.65 to 4.3.66

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.3.65
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -498,6 +498,9 @@ Using pro version:
498
 
499
  == Changelog ==
500
 
 
 
 
501
  = 4.3.65 (2021-04-12) =
502
  * Fixed: Improved performance.
503
  * Fixed: Code enhancement and Junk cleaned.
5
  Requires at least: 3.6
6
  Tested Up To: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 4.3.66
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
498
 
499
  == Changelog ==
500
 
501
+ = 4.3.66 (2021-04-13) =
502
+ * Fixed: Brand by ctx feed missing in the dropdown issue has been fixed.
503
+
504
  = 4.3.65 (2021-04-12) =
505
  * Fixed: Improved performance.
506
  * Fixed: Code enhancement and Junk cleaned.
includes/classes/class-woo-feed-dropdown.php CHANGED
@@ -347,6 +347,10 @@ class Woo_Feed_Dropdown {
347
  if ( is_array( $user_excludes ) && ! empty( $user_excludes ) ) {
348
  $default_excludes = array_merge( $default_excludes, $user_excludes );
349
  }
 
 
 
 
350
  if ( count( $data ) ) {
351
  foreach ( $data as $key => $value ) {
352
  if ( in_array( $value, $default_excludes ) || strpos( $value, 'pa_' ) !== false ) {
@@ -611,12 +615,12 @@ class Woo_Feed_Dropdown {
611
  // $attributes['---7'] = '';
612
  // }
613
  //
614
- // $_taxonomies = $this->getAllTaxonomy();
615
- // if ( ! empty( $_taxonomies ) && is_array( $_taxonomies ) ) {
616
- // $attributes['--8'] = esc_html__( 'Custom Taxonomies', 'woo-feed' );
617
- // $attributes = $attributes + $_taxonomies;
618
- // $attributes['---8'] = '';
619
- // }
620
 
621
  return $attributes;
622
  }
347
  if ( is_array( $user_excludes ) && ! empty( $user_excludes ) ) {
348
  $default_excludes = array_merge( $default_excludes, $user_excludes );
349
  }
350
+
351
+ //get only woo feed brand taxonomy data, should be removed when all taxonomy should be shown
352
+ $data = ['woo-feed-brand'];
353
+
354
  if ( count( $data ) ) {
355
  foreach ( $data as $key => $value ) {
356
  if ( in_array( $value, $default_excludes ) || strpos( $value, 'pa_' ) !== false ) {
615
  // $attributes['---7'] = '';
616
  // }
617
  //
618
+ $_taxonomies = $this->getAllTaxonomy();
619
+ if ( ! empty( $_taxonomies ) && is_array( $_taxonomies ) ) {
620
+ $attributes['--7'] = esc_html__( 'Custom Taxonomies', 'woo-feed' );
621
+ $attributes = $attributes + $_taxonomies;
622
+ $attributes['---7'] = '';
623
+ }
624
 
625
  return $attributes;
626
  }
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.3.65
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.3.65' );
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.3.66
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.3.66' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {