Version Description
Fixed an issues with the XML version of the Google Local Product Inventory feed where the g: was missing for the field names
Download this release
Release Info
Developer | jorisverwater |
Plugin | Product Feed PRO for WooCommerce |
Version | 11.6.8 |
Comparing to | |
See all releases |
Code changes from version 11.6.7 to 11.6.8
- classes/channels/class-google_local.php +11 -11
- js/woosea_key.js +1 -1
- readme.txt +7 -1
- woocommerce-sea.php +4 -5
classes/channels/class-google_local.php
CHANGED
@@ -13,63 +13,63 @@ class WooSEA_google_local {
|
|
13 |
"Local product inventory fields" => array(
|
14 |
"Itemid" => array(
|
15 |
"name" => "id",
|
16 |
-
"feed_name" => "id",
|
17 |
"format" => "required",
|
18 |
"woo_suggest" => "id",
|
19 |
),
|
20 |
"Store code" => array(
|
21 |
"name" => "Store code",
|
22 |
-
"feed_name" => "store_code",
|
23 |
"format" => "required",
|
24 |
),
|
25 |
"Quantity" => array(
|
26 |
"name" => "Quantity",
|
27 |
-
"feed_name" => "quantity",
|
28 |
"format" => "required",
|
29 |
"woo_suggest" => "quantity",
|
30 |
),
|
31 |
"Price" => array(
|
32 |
"name" => "Price",
|
33 |
-
"feed_name" => "price",
|
34 |
"format" => "required",
|
35 |
"woo_suggest" => "price",
|
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 |
),
|
49 |
"Availability" => array(
|
50 |
"name" => "Availability",
|
51 |
-
"feed_name" => "availability",
|
52 |
"format" => "optional",
|
53 |
"woo_suggest" => "availability",
|
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(
|
71 |
"name" => "Webitemid",
|
72 |
-
"feed_name" => "webitemid",
|
73 |
"format" => "optional",
|
74 |
),
|
75 |
),
|
13 |
"Local product inventory fields" => array(
|
14 |
"Itemid" => array(
|
15 |
"name" => "id",
|
16 |
+
"feed_name" => "g:id",
|
17 |
"format" => "required",
|
18 |
"woo_suggest" => "id",
|
19 |
),
|
20 |
"Store code" => array(
|
21 |
"name" => "Store code",
|
22 |
+
"feed_name" => "g:store_code",
|
23 |
"format" => "required",
|
24 |
),
|
25 |
"Quantity" => array(
|
26 |
"name" => "Quantity",
|
27 |
+
"feed_name" => "g:quantity",
|
28 |
"format" => "required",
|
29 |
"woo_suggest" => "quantity",
|
30 |
),
|
31 |
"Price" => array(
|
32 |
"name" => "Price",
|
33 |
+
"feed_name" => "g:price",
|
34 |
"format" => "required",
|
35 |
"woo_suggest" => "price",
|
36 |
),
|
37 |
"Sale price" => array(
|
38 |
"name" => "Sale price",
|
39 |
+
"feed_name" => "g: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" => "g:sale_price_effective_date",
|
46 |
"format" => "optional",
|
47 |
"woo_suggest" => "sale_price_effective_date",
|
48 |
),
|
49 |
"Availability" => array(
|
50 |
"name" => "Availability",
|
51 |
+
"feed_name" => "g:availability",
|
52 |
"format" => "optional",
|
53 |
"woo_suggest" => "availability",
|
54 |
),
|
55 |
"Weeks of supply" => array(
|
56 |
"name" => "Weeks of supply",
|
57 |
+
"feed_name" => "g:weeks_of_supply",
|
58 |
"format" => "optional",
|
59 |
),
|
60 |
"Pickup method" => array(
|
61 |
"name" => "Pickup method",
|
62 |
+
"feed_name" => "g:pickup_method",
|
63 |
"format" => "optional",
|
64 |
),
|
65 |
"Pickup sla" => array(
|
66 |
"name" => "Pickup sla",
|
67 |
+
"feed_name" => "g:pickup_sla",
|
68 |
"format" => "optional",
|
69 |
),
|
70 |
"Webitemid" => array(
|
71 |
"name" => "Webitemid",
|
72 |
+
"feed_name" => "g:webitemid",
|
73 |
"format" => "optional",
|
74 |
),
|
75 |
),
|
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.8',
|
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.7 (2022-06-21) =
|
349 |
* Fixed an issue when a non-string was added as a key to the product data array
|
350 |
|
@@ -3734,6 +3737,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
|
|
3734 |
|
3735 |
== Upgrade Notice ==
|
3736 |
|
|
|
|
|
|
|
3737 |
= 11.6.7 =
|
3738 |
Fixed an issue when a non-string was added as a key to the product data array
|
3739 |
|
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.8
|
9 |
|
10 |
== Description ==
|
11 |
|
345 |
|
346 |
=== Changelog ===
|
347 |
|
348 |
+
= 11.6.8 (2022-06-30) =
|
349 |
+
* Fixed an issues with the XML version of the Google Local Product Inventory feed where the g: was missing for the field names
|
350 |
+
|
351 |
= 11.6.7 (2022-06-21) =
|
352 |
* Fixed an issue when a non-string was added as a key to the product data array
|
353 |
|
3737 |
|
3738 |
== Upgrade Notice ==
|
3739 |
|
3740 |
+
= 11.6.8 =
|
3741 |
+
Fixed an issues with the XML version of the Google Local Product Inventory feed where the g: was missing for the field names
|
3742 |
+
|
3743 |
= 11.6.7 =
|
3744 |
Fixed an issue when a non-string was added as a key to the product data array
|
3745 |
|
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
|
@@ -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 |
|
@@ -169,10 +169,9 @@ function woosea_plugin_action_links($links, $file) {
|
|
169 |
if ($file == $this_plugin) {
|
170 |
$host = '';
|
171 |
if (!empty($_SERVER['HTTP_HOST'])) {
|
172 |
-
|
|
|
173 |
}
|
174 |
-
|
175 |
-
$host = sanitize_text_field($_SERVER['HTTP_HOST']);
|
176 |
$plugin_links[] = '<a href="https://adtribes.io/support/?utm_source='.$host.'&utm_medium=pluginpage&utm_campaign=support" target="_blank">Support</a>';
|
177 |
$plugin_links[] = '<a href="https://adtribes.io/tutorials/?utm_source='.$host.'&utm_medium=pluginpage&utm_campaign=tutorials" target="_blank">Tutorials</a>';
|
178 |
$plugin_links[] = '<a href="https://adtribes.io/pro-vs-elite/?utm_source='.$host.'&utm_medium=pluginpage&utm_campaign=go elite" target="_blank" style="color:green;"><b>Go Elite</b></a>';
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Product Feed PRO for WooCommerce
|
4 |
+
* Version: 11.6.8
|
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
|
48 |
* Plugin versionnumber, please do not override.
|
49 |
* Define some constants
|
50 |
*/
|
51 |
+
define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.6.8' );
|
52 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
|
53 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
|
54 |
|
169 |
if ($file == $this_plugin) {
|
170 |
$host = '';
|
171 |
if (!empty($_SERVER['HTTP_HOST'])) {
|
172 |
+
$host = $_SERVER['HTTP_HOST'];
|
173 |
+
$host = sanitize_text_field($_SERVER['HTTP_HOST']);
|
174 |
}
|
|
|
|
|
175 |
$plugin_links[] = '<a href="https://adtribes.io/support/?utm_source='.$host.'&utm_medium=pluginpage&utm_campaign=support" target="_blank">Support</a>';
|
176 |
$plugin_links[] = '<a href="https://adtribes.io/tutorials/?utm_source='.$host.'&utm_medium=pluginpage&utm_campaign=tutorials" target="_blank">Tutorials</a>';
|
177 |
$plugin_links[] = '<a href="https://adtribes.io/pro-vs-elite/?utm_source='.$host.'&utm_medium=pluginpage&utm_campaign=go elite" target="_blank" style="color:green;"><b>Go Elite</b></a>';
|