CTX Feed – WooCommerce Product Feed Manager Plugin - Version 3.7.1

Version Description

(2020-08-19) = * Added: sale_price added as default into Google Shopping product feed template. * Fix: shopping_ads_excluded_country structure fixed into Google Shopping product feed template.

Download this release

Release Info

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

Code changes from version 3.7.0 to 3.7.1

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.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -308,6 +308,10 @@ Using pro version:
308
 
309
  == Changelog ==
310
 
 
 
 
 
311
  = 3.7.0 (2020-08-18) =
312
  * Added: Below attributes are added to google shopping template.
313
  * min_energy_​​efficiency_​​class
5
  Requires at least: 3.6
6
  Tested Up To: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 3.7.1
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.1 (2020-08-19) =
312
+ * Added: sale_price added as default into Google Shopping product feed template.
313
+ * Fix: shopping_ads_excluded_country structure fixed into Google Shopping product feed template.
314
+
315
  = 3.7.0 (2020-08-18) =
316
  * Added: Below attributes are added to google shopping template.
317
  * min_energy_​​efficiency_​​class
includes/classes/class-woo-feed-products-v3.php CHANGED
@@ -614,7 +614,7 @@ class Woo_Feed_Products_v3
614
  return true;
615
  }
616
 
617
- if (in_array($merchant_attribute, $this->processed_merchant_attributes)) {
618
  return true;
619
  }
620
 
614
  return true;
615
  }
616
 
617
+ if ('shopping_ads_excluded_country'!== $merchant_attribute && in_array($merchant_attribute, $this->processed_merchant_attributes)) {
618
  return true;
619
  }
620
 
includes/feeds/merchant_templates.php CHANGED
@@ -50,15 +50,15 @@ return array(
50
  'limit' => array( '', '', '', '', '', '', '', '' ),
51
  ),
52
  'google' => array(
53
- 'mattributes' => array( 'id', 'title', 'description', 'item_group_id', 'link', 'product_type', 'current_category', 'image', 'condition', 'availability', 'price', 'sku', 'brand' ),
54
- 'prefix' => array( '', '', '', '', '', '', '', '', '', '', '', '', '' ),
55
- 'type' => array( 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'pattern', 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'pattern' ),
56
- 'attributes' => array( 'id', 'title', 'description', 'item_group_id', 'link', 'product_type', '', 'image', 'condition', 'availability', 'price', 'sku', '' ),
57
- 'default' => array( '', '', '', '', '', '', '', '', '', '', '', '', $this->brand_pattern ),
58
- 'suffix' => array( '', '', '', '', '', '', '', '', '', '', ' ' . $this->currency, '', '' ),
59
- 'output_type' => array( '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '6', '1', '1' ),
60
- 'limit' => array( '', '', '', '', '', '', '', '', '', '', '', '', '' ),
61
- ),
62
  'bol' => array(
63
  'mattributes' => array(
64
  'EAN',
50
  'limit' => array( '', '', '', '', '', '', '', '' ),
51
  ),
52
  'google' => array(
53
+ 'mattributes' => array( 'id', 'title', 'description', 'item_group_id', 'link', 'product_type', 'current_category', 'image', 'condition', 'availability', 'price', 'sale_price', 'sku', 'brand' ),
54
+ 'prefix' => array( '', '', '', '', '', '', '', '', '', '', '', '', '', '' ),
55
+ 'type' => array( 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'pattern', 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'pattern'),
56
+ 'attributes' => array( 'id', 'title', 'description', 'item_group_id', 'link', 'product_type', '', 'image', 'condition', 'availability', 'price', 'current_price', 'sku', '' ),
57
+ 'default' => array( '', '', '', '', '', '', '', '', '', '', '', '', '', $this->brand_pattern, '' ),
58
+ 'suffix' => array( '', '', '', '', '', '', '', '', '', '', ' ' . $this->currency, ' ' . $this->currency , '', ''),
59
+ 'output_type' => array( '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '6', '6', '1', '1' ),
60
+ 'limit' => array( '', '', '', '', '', '', '', '', '', '', '', '', '', '' ),
61
+ ),
62
  'bol' => array(
63
  'mattributes' => array(
64
  'EAN',
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.0
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.0' );
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.1
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.1' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {