Version Description
Added 4 new Google Shopping fields in the template: product height, product length, product width and product weight
Download this release
Release Info
Developer | jorisverwater |
Plugin | Product Feed PRO for WooCommerce |
Version | 11.4.1 |
Comparing to | |
See all releases |
Code changes from version 11.4.0 to 11.4.1
- classes/channels/class-google_shopping.php +20 -0
- js/woosea_key.js +1 -1
- readme.txt +7 -1
- woocommerce-sea.php +2 -2
classes/channels/class-google_shopping.php
CHANGED
@@ -520,6 +520,26 @@ class WooSEA_google_shopping {
|
|
520 |
"feed_name" => "g:product_page_url",
|
521 |
"format" => "optional",
|
522 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
523 |
"Size system" => array(
|
524 |
"name" => "size_system",
|
525 |
"feed_name" => "g:size_system",
|
520 |
"feed_name" => "g:product_page_url",
|
521 |
"format" => "optional",
|
522 |
),
|
523 |
+
"Product length" => array(
|
524 |
+
"name" => "product_length",
|
525 |
+
"feed_name" => "g:product_length",
|
526 |
+
"format" => "optional",
|
527 |
+
),
|
528 |
+
"Product width" => array(
|
529 |
+
"name" => "product_width",
|
530 |
+
"feed_name" => "g:product_width",
|
531 |
+
"format" => "optional",
|
532 |
+
),
|
533 |
+
"Product height" => array(
|
534 |
+
"name" => "product_height",
|
535 |
+
"feed_name" => "g:product_height",
|
536 |
+
"format" => "optional",
|
537 |
+
),
|
538 |
+
"Product weight" => array(
|
539 |
+
"name" => "product_weight",
|
540 |
+
"feed_name" => "g:product_weight",
|
541 |
+
"format" => "optional",
|
542 |
+
),
|
543 |
"Size system" => array(
|
544 |
"name" => "size_system",
|
545 |
"feed_name" => "g:size_system",
|
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.4.
|
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.4.1',
|
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, WooCommerce Product Feed, Facebook Product Feed, Bing Shopping Feed, Bing Product Feed, Google Merchant Feed, Skroutz, Google Product Feed, Pinterest, Idealo, Facebook Pixel, Facebook Conversion API
|
6 |
Requires at least: 4.5
|
7 |
Tested up to: 5.9
|
8 |
-
Stable tag: 11.4.
|
9 |
|
10 |
== Description ==
|
11 |
|
@@ -337,6 +337,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
|
|
337 |
|
338 |
=== Changelog ===
|
339 |
|
|
|
|
|
|
|
340 |
= 11.4.0 (2022-03-14) =
|
341 |
* Added encoding for percentage characters
|
342 |
* Fixed a rounding error which one does on strings instead of int|floats
|
@@ -3643,6 +3646,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
|
|
3643 |
|
3644 |
== Upgrade Notice ==
|
3645 |
|
|
|
|
|
|
|
3646 |
= 11.4.0 =
|
3647 |
Added encoding for percentage characters
|
3648 |
Fixed a rounding error which one does on strings instead of int|floats
|
5 |
Tags: Google Shopping Feed, WooCommerce Product Feed, Facebook Product Feed, Bing Shopping Feed, Bing Product Feed, Google Merchant Feed, Skroutz, Google Product Feed, Pinterest, Idealo, Facebook Pixel, Facebook Conversion API
|
6 |
Requires at least: 4.5
|
7 |
Tested up to: 5.9
|
8 |
+
Stable tag: 11.4.1
|
9 |
|
10 |
== Description ==
|
11 |
|
337 |
|
338 |
=== Changelog ===
|
339 |
|
340 |
+
= 11.4.1 (2022-03-15) =
|
341 |
+
* Added 4 new Google Shopping fields in the template: product height, product length, product width and product weight
|
342 |
+
|
343 |
= 11.4.0 (2022-03-14) =
|
344 |
* Added encoding for percentage characters
|
345 |
* Fixed a rounding error which one does on strings instead of int|floats
|
3646 |
|
3647 |
== Upgrade Notice ==
|
3648 |
|
3649 |
+
= 11.4.1 =
|
3650 |
+
Added 4 new Google Shopping fields in the template: product height, product length, product width and product weight
|
3651 |
+
|
3652 |
= 11.4.0 =
|
3653 |
Added encoding for percentage characters
|
3654 |
Fixed a rounding error which one does on strings instead of int|floats
|
woocommerce-sea.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Product Feed PRO for WooCommerce
|
4 |
-
* Version: 11.4.
|
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, Facebook, 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.4.
|
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.4.1
|
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, Facebook, 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.4.1' );
|
52 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
|
53 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
|
54 |
|