CTX Feed – WooCommerce Product Feed Manager Plugin - Version 3.7.7

Version Description

(2020-08-26) = * Fix: Multiple additional_image_link attribute missing on Google Shopping template for CSV & TXT feed.

Download this release

Release Info

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

Code changes from version 3.7.6 to 3.7.7

README.txt CHANGED
@@ -5,7 +5,7 @@ Tags:product feed,woocommerce product feed,google shopping feed,google shopping,
5
  Requires at least: 3.6
6
  Tested Up To: 5.5
7
  Requires PHP: 5.6
8
- Stable tag: 3.7.6
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -308,6 +308,9 @@ Using pro version:
308
 
309
  == Changelog ==
310
 
 
 
 
311
  = 3.7.6 (2020-08-25) =
312
  * Fix: XML Opening and Ending tag mismatch issue fixed.
313
 
5
  Requires at least: 3.6
6
  Tested Up To: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 3.7.7
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
308
 
309
  == Changelog ==
310
 
311
+ = 3.7.7 (2020-08-26) =
312
+ * Fix: Multiple additional_image_link attribute missing on Google Shopping template for CSV & TXT feed.
313
+
314
  = 3.7.6 (2020-08-25) =
315
  * Fix: XML Opening and Ending tag mismatch issue fixed.
316
 
includes/classes/class-woo-feed-default-attributes.php CHANGED
@@ -132,16 +132,16 @@ class Woo_Feed_Default_Attributes {
132
  'current_category' => array( 'google product category', true ),
133
  'image' => array( 'image link', true ),
134
  'images' => array( 'additional image link', true ),
135
- 'images_1' => array( 'additional image link', true ),
136
- 'images_2' => array( 'additional image link', true ),
137
- 'images_3' => array( 'additional image link', true ),
138
- 'images_4' => array( 'additional image link', true ),
139
- 'images_5' => array( 'additional image link', true ),
140
- 'images_6' => array( 'additional image link', true ),
141
- 'images_7' => array( 'additional image link', true ),
142
- 'images_8' => array( 'additional image link', true ),
143
- 'images_9' => array( 'additional image link', true ),
144
- 'images_10' => array( 'additional image link', true ),
145
  'condition' => array( 'condition', false ),
146
  'availability' => array( 'availability', false ),
147
  'availability_date' => array( 'availability date', false ),
132
  'current_category' => array( 'google product category', true ),
133
  'image' => array( 'image link', true ),
134
  'images' => array( 'additional image link', true ),
135
+ 'images_1' => array( 'additional image link 1', true ),
136
+ 'images_2' => array( 'additional image link 2', true ),
137
+ 'images_3' => array( 'additional image link 3', true ),
138
+ 'images_4' => array( 'additional image link 4', true ),
139
+ 'images_5' => array( 'additional image link 5', true ),
140
+ 'images_6' => array( 'additional image link 6', true ),
141
+ 'images_7' => array( 'additional image link 7', true ),
142
+ 'images_8' => array( 'additional image link 8', true ),
143
+ 'images_9' => array( 'additional image link 9', true ),
144
+ 'images_10' => array( 'additional image link 10', true ),
145
  'condition' => array( 'condition', false ),
146
  'availability' => array( 'availability', false ),
147
  'availability_date' => array( 'availability date', false ),
includes/classes/class-woo-feed-products-v3.php CHANGED
@@ -91,6 +91,23 @@ class Woo_Feed_Products_v3
91
  'product highlight 9',
92
  'product highlight 10',
93
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  /**
95
  * Google shipping tax attributes
96
  * @var array
@@ -974,6 +991,7 @@ class Woo_Feed_Products_v3
974
 
975
  if('google'===$this->config['provider']){
976
  $this->feedHeader=str_replace($this->google_product_highlights,'product highlight',$this->feedHeader);
 
977
  }
978
 
979
  return $this->feedHeader;
@@ -1033,6 +1051,7 @@ class Woo_Feed_Products_v3
1033
 
1034
  if('google'===$this->config['provider']){
1035
  $this->feedHeader=str_replace($this->google_product_highlights,'product highlight',$this->feedHeader);
 
1036
  }
1037
 
1038
  return $this->feedHeader;
91
  'product highlight 9',
92
  'product highlight 10',
93
  );
94
+
95
+ /**
96
+ * To replace google additional image link attribute for CSV & TXT feed
97
+ * @var array
98
+ */
99
+ protected $google_additional_image=array(
100
+ 'additional image link 1',
101
+ 'additional image link 2',
102
+ 'additional image link 3',
103
+ 'additional image link 4',
104
+ 'additional image link 5',
105
+ 'additional image link 6',
106
+ 'additional image link 7',
107
+ 'additional image link 8',
108
+ 'additional image link 9',
109
+ 'additional image link 10',
110
+ );
111
  /**
112
  * Google shipping tax attributes
113
  * @var array
991
 
992
  if('google'===$this->config['provider']){
993
  $this->feedHeader=str_replace($this->google_product_highlights,'product highlight',$this->feedHeader);
994
+ $this->feedHeader=str_replace($this->google_additional_image,'additional image link',$this->feedHeader);
995
  }
996
 
997
  return $this->feedHeader;
1051
 
1052
  if('google'===$this->config['provider']){
1053
  $this->feedHeader=str_replace($this->google_product_highlights,'product highlight',$this->feedHeader);
1054
+ $this->feedHeader=str_replace($this->google_additional_image,'additional image link',$this->feedHeader);
1055
  }
1056
 
1057
  return $this->feedHeader;
woo-feed.php CHANGED
@@ -11,7 +11,7 @@
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
  *
14
- * Version: 3.7.6
15
  * Author: WebAppick
16
  * Author URI: https://webappick.com/
17
  * 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', '3.7.6' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
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
  *
14
+ * Version: 3.7.7
15
  * Author: WebAppick
16
  * Author URI: https://webappick.com/
17
  * License: GPL v2
39
  * @var string
40
  * @since 3.1.6
41
  */
42
+ define( 'WOO_FEED_FREE_VERSION', '3.7.7' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {