Version Description
(2020-08-31) = * Added: Facebook inventory attribute added to Facebook catalog template as default.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 3.7.9 |
Comparing to | |
See all releases |
Code changes from version 3.7.8 to 3.7.9
- README.txt +4 -1
- includes/classes/class-woo-feed-merchant.php +1 -1
- includes/feeds/merchant_templates.php +10 -0
- woo-feed.php +2 -2
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.
|
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.8 (2020-08-28) =
|
312 |
* Added: Tweakers Pricewatch XML & CSV template added.
|
313 |
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 3.7.9
|
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.9 (2020-08-31) =
|
312 |
+
* Added: Facebook inventory attribute added to Facebook catalog template as default.
|
313 |
+
|
314 |
= 3.7.8 (2020-08-28) =
|
315 |
* Added: Tweakers Pricewatch XML & CSV template added.
|
316 |
|
includes/classes/class-woo-feed-merchant.php
CHANGED
@@ -146,7 +146,7 @@ class Woo_Feed_Merchant {
|
|
146 |
$this->templates = include WOO_FEED_FREE_PATH . 'includes/feeds/merchant_templates.php';
|
147 |
|
148 |
// reduce duplicate data.
|
149 |
-
|
150 |
$this->templates['pinterest'] = $this->templates['google'];
|
151 |
$this->templates['adroll'] = $this->templates['google'];
|
152 |
$this->templates['smartly.io'] = $this->templates['google'];
|
146 |
$this->templates = include WOO_FEED_FREE_PATH . 'includes/feeds/merchant_templates.php';
|
147 |
|
148 |
// reduce duplicate data.
|
149 |
+
//$this->templates['facebook'] = $this->templates['google'];
|
150 |
$this->templates['pinterest'] = $this->templates['google'];
|
151 |
$this->templates['adroll'] = $this->templates['google'];
|
152 |
$this->templates['smartly.io'] = $this->templates['google'];
|
includes/feeds/merchant_templates.php
CHANGED
@@ -58,6 +58,16 @@ return array(
|
|
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(
|
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 |
+
'facebook' => array(
|
63 |
+
'mattributes' => array( 'id', 'title', 'description', 'item_group_id', 'link', 'product_type', 'current_category', 'image', 'condition', 'availability', 'price', 'sale_price', 'sku', 'brand', 'inventory', ),
|
64 |
+
'prefix' => array( '', '', '', '', '', '', '', '', '', '', '', '', '', '', '' ),
|
65 |
+
'type' => array( 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'pattern', 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'attribute', 'pattern', 'attribute'),
|
66 |
+
'attributes' => array( 'id', 'title', 'description', 'item_group_id', 'link', 'product_type', '', 'image', 'condition', 'availability', 'price', 'current_price', 'sku', '' ,'quantity'),
|
67 |
+
'default' => array( '', '', '', '', '', '', '', '', '', '', '', '', '', $this->brand_pattern, '', '' ),
|
68 |
+
'suffix' => array( '', '', '', '', '', '', '', '', '', '', ' ' . $this->currency, ' ' . $this->currency , '', '', ''),
|
69 |
+
'output_type' => array( '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '6', '6', '1', '1', '1' ),
|
70 |
+
'limit' => array( '', '', '', '', '', '', '', '', '', '', '', '', '', '' , '' ),
|
71 |
),
|
72 |
'bol' => array(
|
73 |
'mattributes' => array(
|
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.
|
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.
|
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.9
|
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.9' );
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|