Product Feed PRO for WooCommerce - Version 12.0.2

Version Description

Added the sale_price_effective_date field to the Google DRM feed template

Download this release

Release Info

Developer jorisverwater
Plugin Icon 128x128 Product Feed PRO for WooCommerce
Version 12.0.2
Comparing to
See all releases

Code changes from version 12.0.1 to 12.0.2

classes/channels/class-google_drm.php CHANGED
@@ -69,6 +69,12 @@ class WooSEA_google_drm {
69
  "format" => "optional",
70
  "woo_suggest" => "sale_price",
71
  ),
 
 
 
 
 
 
72
  "Contextual keywords" => array(
73
  "name" => "Contextual keywords",
74
  "feed_name" => "Contextual keywords",
69
  "format" => "optional",
70
  "woo_suggest" => "sale_price",
71
  ),
72
+ "Sale price effective date" => array(
73
+ "name" => "Sale price effective date",
74
+ "feed_name" => "Sale price effective date",
75
+ "format" => "optional",
76
+ "woo_suggest" => "sale_price_effective_date",
77
+ ),
78
  "Contextual keywords" => array(
79
  "name" => "Contextual keywords",
80
  "feed_name" => "Contextual keywords",
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=12.0.1',
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=12.0.2',
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.1
8
- Stable tag: 12.0.1
9
 
10
  == Description ==
11
 
@@ -340,6 +340,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
340
 
341
  === Changelog ===
342
 
 
 
 
343
  = 12.0.1 (2022-11-20) =
344
  * Fixed an issue with the sale_price_effective_date which was empty
345
 
@@ -3837,6 +3840,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
3837
 
3838
  == Upgrade Notice ==
3839
 
 
 
 
3840
  = 12.0.1 =
3841
  Fixed an issue with the sale_price_effective_date which was empty
3842
 
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.1
8
+ Stable tag: 12.0.2
9
 
10
  == Description ==
11
 
340
 
341
  === Changelog ===
342
 
343
+ = 12.0.2 (2022-11-21) =
344
+ * Added the sale_price_effective_date field to the Google DRM feed template
345
+
346
  = 12.0.1 (2022-11-20) =
347
  * Fixed an issue with the sale_price_effective_date which was empty
348
 
3840
 
3841
  == Upgrade Notice ==
3842
 
3843
+ = 12.0.2 =
3844
+ Added the sale_price_effective_date field to the Google DRM feed template
3845
+
3846
  = 12.0.1 =
3847
  Fixed an issue with the sale_price_effective_date which was empty
3848
 
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 12.0.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, 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', '12.0.1' );
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: 12.0.2
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', '12.0.2' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54