Version Description
Added XML support for Google's Local Product Inventory feeds
Download this release
Release Info
Developer | jorisverwater |
Plugin | Product Feed PRO for WooCommerce |
Version | 11.6.5 |
Comparing to | |
See all releases |
Code changes from version 6.6.0 to 11.6.5
- TODO.txt +0 -1
- classes/channels/class-google_local.php +6 -6
- js/woosea_channel.js +0 -1
- js/woosea_key.js +1 -1
- readme.txt +7 -1
- woocommerce-sea.php +3 -3
TODO.txt
CHANGED
@@ -15,7 +15,6 @@ Priority issues:
|
|
15 |
- A seperate FB pixel per WPML website / language
|
16 |
- Add a preview option so only 5-10 products are being generated
|
17 |
- Own hosted plugin updating: https://rudrastyh.com/wordpress/self-hosted-plugin-update.html
|
18 |
-
- Google local product feed inventory in XML format (not just TXT like it is now)
|
19 |
- Add support for Wordpress Multisites
|
20 |
- Add a filter on review score (and amount of reviews)
|
21 |
- Make extra woosea fields available for front-end usage
|
15 |
- A seperate FB pixel per WPML website / language
|
16 |
- Add a preview option so only 5-10 products are being generated
|
17 |
- Own hosted plugin updating: https://rudrastyh.com/wordpress/self-hosted-plugin-update.html
|
|
|
18 |
- Add support for Wordpress Multisites
|
19 |
- Add a filter on review score (and amount of reviews)
|
20 |
- Make extra woosea fields available for front-end usage
|
classes/channels/class-google_local.php
CHANGED
@@ -19,7 +19,7 @@ class WooSEA_google_local {
|
|
19 |
),
|
20 |
"Store code" => array(
|
21 |
"name" => "Store code",
|
22 |
-
"feed_name" => "
|
23 |
"format" => "required",
|
24 |
),
|
25 |
"Quantity" => array(
|
@@ -36,13 +36,13 @@ class WooSEA_google_local {
|
|
36 |
),
|
37 |
"Sale price" => array(
|
38 |
"name" => "Sale price",
|
39 |
-
"feed_name" => "
|
40 |
"format" => "optional",
|
41 |
"woo_suggest" => "sale_price",
|
42 |
),
|
43 |
"Sale price effective date" => array(
|
44 |
"name" => "Sale price effective date",
|
45 |
-
"feed_name" => "
|
46 |
"format" => "optional",
|
47 |
"woo_suggest" => "sale_price_effective_date",
|
48 |
),
|
@@ -54,17 +54,17 @@ class WooSEA_google_local {
|
|
54 |
),
|
55 |
"Weeks of supply" => array(
|
56 |
"name" => "Weeks of supply",
|
57 |
-
"feed_name" => "
|
58 |
"format" => "optional",
|
59 |
),
|
60 |
"Pickup method" => array(
|
61 |
"name" => "Pickup method",
|
62 |
-
"feed_name" => "
|
63 |
"format" => "optional",
|
64 |
),
|
65 |
"Pickup sla" => array(
|
66 |
"name" => "Pickup sla",
|
67 |
-
"feed_name" => "
|
68 |
"format" => "optional",
|
69 |
),
|
70 |
"Webitemid" => array(
|
19 |
),
|
20 |
"Store code" => array(
|
21 |
"name" => "Store code",
|
22 |
+
"feed_name" => "store_code",
|
23 |
"format" => "required",
|
24 |
),
|
25 |
"Quantity" => array(
|
36 |
),
|
37 |
"Sale price" => array(
|
38 |
"name" => "Sale price",
|
39 |
+
"feed_name" => "sale_price",
|
40 |
"format" => "optional",
|
41 |
"woo_suggest" => "sale_price",
|
42 |
),
|
43 |
"Sale price effective date" => array(
|
44 |
"name" => "Sale price effective date",
|
45 |
+
"feed_name" => "sale_price_effective_date",
|
46 |
"format" => "optional",
|
47 |
"woo_suggest" => "sale_price_effective_date",
|
48 |
),
|
54 |
),
|
55 |
"Weeks of supply" => array(
|
56 |
"name" => "Weeks of supply",
|
57 |
+
"feed_name" => "weeks_of_supply",
|
58 |
"format" => "optional",
|
59 |
),
|
60 |
"Pickup method" => array(
|
61 |
"name" => "Pickup method",
|
62 |
+
"feed_name" => "pickup_method",
|
63 |
"format" => "optional",
|
64 |
),
|
65 |
"Pickup sla" => array(
|
66 |
"name" => "Pickup sla",
|
67 |
+
"feed_name" => "pickup_sla",
|
68 |
"format" => "optional",
|
69 |
),
|
70 |
"Webitemid" => array(
|
js/woosea_channel.js
CHANGED
@@ -46,7 +46,6 @@ jQuery(document).ready(function($) {
|
|
46 |
|
47 |
$('#file').after('<tr id="delimiter"><td><span>Delimiter:</span></td><td><select name="delimiter" class="select-field"><option value=",">, comma</option><option value="|">| pipe</option><option value=";">;</option><option value="tab">tab</option><option value="#">#</option></select></td></tr>');
|
48 |
} else if(channel_hash == 'Google Local Products Inventory'){ // Ugly hack, should be configurable per channel
|
49 |
-
$("#fileformat option[value='xml']").remove();
|
50 |
$("#fileformat option[value='csv']").remove();
|
51 |
$("#fileformat option[value='tsv']").remove();
|
52 |
|
46 |
|
47 |
$('#file').after('<tr id="delimiter"><td><span>Delimiter:</span></td><td><select name="delimiter" class="select-field"><option value=",">, comma</option><option value="|">| pipe</option><option value=";">;</option><option value="tab">tab</option><option value="#">#</option></select></td></tr>');
|
48 |
} else if(channel_hash == 'Google Local Products Inventory'){ // Ugly hack, should be configurable per channel
|
|
|
49 |
$("#fileformat option[value='csv']").remove();
|
50 |
$("#fileformat option[value='tsv']").remove();
|
51 |
|
js/woosea_key.js
CHANGED
@@ -26,7 +26,7 @@ jQuery(document).ready(function($) {
|
|
26 |
var license_key = $('#license-key').val();
|
27 |
|
28 |
jQuery.ajax({
|
29 |
-
url: 'https://www.adtribes.io/check/license.php?key=' + license_key + '&email=' + license_email + '&domain=' + root_domain + '&version=11.6.
|
30 |
jsonp: 'callback',
|
31 |
dataType: 'jsonp',
|
32 |
type: 'GET',
|
26 |
var license_key = $('#license-key').val();
|
27 |
|
28 |
jQuery.ajax({
|
29 |
+
url: 'https://www.adtribes.io/check/license.php?key=' + license_key + '&email=' + license_email + '&domain=' + root_domain + '&version=11.6.5',
|
30 |
jsonp: 'callback',
|
31 |
dataType: 'jsonp',
|
32 |
type: 'GET',
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
|
|
5 |
Tags: Google Shopping Feed, Facebook feed, Facebook catalog feed, WooCommerce Product Feed, Product Feed, Bing Shopping Feed, Bing Product Feed, Google Merchant Feed, Skroutz, Google Product Feed, Pinterest, Idealo, Pixels, Conversion API
|
6 |
Requires at least: 4.5
|
7 |
Tested up to: 6.0
|
8 |
-
Stable tag: 11.6.
|
9 |
|
10 |
== Description ==
|
11 |
|
@@ -345,6 +345,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
|
|
345 |
|
346 |
=== Changelog ===
|
347 |
|
|
|
|
|
|
|
348 |
= 11.6.4 (2022-06-16) =
|
349 |
* Checked for compatibility with WooCommerce 6.6.0
|
350 |
|
@@ -3725,6 +3728,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
|
|
3725 |
|
3726 |
== Upgrade Notice ==
|
3727 |
|
|
|
|
|
|
|
3728 |
= 11.6.4 =
|
3729 |
Checked for compatibility with WooCommerce 6.6.0
|
3730 |
|
5 |
Tags: Google Shopping Feed, Facebook feed, Facebook catalog feed, WooCommerce Product Feed, Product Feed, Bing Shopping Feed, Bing Product Feed, Google Merchant Feed, Skroutz, Google Product Feed, Pinterest, Idealo, Pixels, Conversion API
|
6 |
Requires at least: 4.5
|
7 |
Tested up to: 6.0
|
8 |
+
Stable tag: 11.6.5
|
9 |
|
10 |
== Description ==
|
11 |
|
345 |
|
346 |
=== Changelog ===
|
347 |
|
348 |
+
= 11.6.5 (2022-06-20) =
|
349 |
+
* Added XML support for Google's Local Product Inventory feeds
|
350 |
+
|
351 |
= 11.6.4 (2022-06-16) =
|
352 |
* Checked for compatibility with WooCommerce 6.6.0
|
353 |
|
3728 |
|
3729 |
== Upgrade Notice ==
|
3730 |
|
3731 |
+
= 11.6.5 =
|
3732 |
+
Added XML support for Google's Local Product Inventory feeds
|
3733 |
+
|
3734 |
= 11.6.4 =
|
3735 |
Checked for compatibility with WooCommerce 6.6.0
|
3736 |
|
woocommerce-sea.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Product Feed PRO for WooCommerce
|
4 |
-
* Version: 11.6.
|
5 |
* Plugin URI: https://www.adtribes.io/support/?utm_source=wpadmin&utm_medium=plugin&utm_campaign=woosea_product_feed_pro
|
6 |
* Description: Configure and maintain your WooCommerce product feeds for Google Shopping, Catalog managers, Remarketing, Bing, Skroutz, Yandex, Comparison shopping websites and over a 100 channels more.
|
7 |
* Author: AdTribes.io
|
@@ -11,7 +11,7 @@
|
|
11 |
* License: GPL3
|
12 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
13 |
* Requires at least: 4.5
|
14 |
-
* Tested up to:
|
15 |
*
|
16 |
* Text Domain: woo-product-feed-pro
|
17 |
* Domain Path: /languages
|
@@ -48,7 +48,7 @@ if (!defined('ABSPATH')) {
|
|
48 |
* Plugin versionnumber, please do not override.
|
49 |
* Define some constants
|
50 |
*/
|
51 |
-
define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.6.
|
52 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
|
53 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
|
54 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Product Feed PRO for WooCommerce
|
4 |
+
* Version: 11.6.5
|
5 |
* Plugin URI: https://www.adtribes.io/support/?utm_source=wpadmin&utm_medium=plugin&utm_campaign=woosea_product_feed_pro
|
6 |
* Description: Configure and maintain your WooCommerce product feeds for Google Shopping, Catalog managers, Remarketing, Bing, Skroutz, Yandex, Comparison shopping websites and over a 100 channels more.
|
7 |
* Author: AdTribes.io
|
11 |
* License: GPL3
|
12 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
13 |
* Requires at least: 4.5
|
14 |
+
* Tested up to: 6.0
|
15 |
*
|
16 |
* Text Domain: woo-product-feed-pro
|
17 |
* Domain Path: /languages
|
48 |
* Plugin versionnumber, please do not override.
|
49 |
* Define some constants
|
50 |
*/
|
51 |
+
define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.6.5' );
|
52 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
|
53 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
|
54 |
|