Product Feed PRO for WooCommerce - Version 11.9.5

Version Description

Solved a PHP warning for yoast attributes

Download this release

Release Info

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

Code changes from version 11.9.4 to 11.9.5

classes/class-get-products.php CHANGED
@@ -276,19 +276,31 @@ class WooSEA_Get_Products {
276
  if($value->name == "wpseo_global_identifier_values"){
277
  $type_expl = explode("\";", $value->type);
278
 
279
- $yoast_gtin8_value = explode(":\"", $type_expl[1]);
280
- $yoast_gtin12_value = explode(":\"", $type_expl[3]);
281
- $yoast_gtin13_value = explode(":\"", $type_expl[5]);
282
- $yoast_gtin14_value = explode(":\"", $type_expl[7]);
283
- $yoast_isbn_value = explode(":\"", $type_expl[9]);
284
- $yoast_mpn_value = explode(":\"", $type_expl[11]);
285
-
286
- $list["yoast_gtin8"] = $yoast_gtin8_value[1];
287
- $list["yoast_gtin12"] = $yoast_gtin12_value[1];
288
- $list["yoast_gtin13"] = $yoast_gtin13_value[1];
289
- $list["yoast_gtin14"] = $yoast_gtin14_value[1];
290
- $list["yoast_isbn"] = $yoast_isbn_value[1];
291
- $list["yoast_mpn"] = $yoast_mpn_value[1];
 
 
 
 
 
 
 
 
 
 
 
 
292
  }
293
  } else {
294
  $product_attr = unserialize($value->type);
276
  if($value->name == "wpseo_global_identifier_values"){
277
  $type_expl = explode("\";", $value->type);
278
 
279
+ $yoast_gtin8_value = @explode(":\"", $type_expl[1]);
280
+ $yoast_gtin12_value = @explode(":\"", $type_expl[3]);
281
+ $yoast_gtin13_value = @explode(":\"", $type_expl[5]);
282
+ $yoast_gtin14_value = @explode(":\"", $type_expl[7]);
283
+ $yoast_isbn_value = @explode(":\"", $type_expl[9]);
284
+ $yoast_mpn_value = @explode(":\"", $type_expl[11]);
285
+
286
+ if(isset($yoast_gtin8_value[1])){
287
+ $list["yoast_gtin8"] = $yoast_gtin8_value[1];
288
+ }
289
+ if(isset($yoast_gtin12_value[1])){
290
+ $list["yoast_gtin12"] = $yoast_gtin12_value[1];
291
+ }
292
+ if(isset($yoast_gtin13_value[1])){
293
+ $list["yoast_gtin13"] = $yoast_gtin13_value[1];
294
+ }
295
+ if(isset($yoast_gtin14_value[1])){
296
+ $list["yoast_gtin14"] = $yoast_gtin14_value[1];
297
+ }
298
+ if(isset($yoast_isbn_value[1])){
299
+ $list["yoast_isbn"] = $yoast_isbn_value[1];
300
+ }
301
+ if(isset($yoast_mpn_value[1])){
302
+ $list["yoast_mpn"] = $yoast_mpn_value[1];
303
+ }
304
  }
305
  } else {
306
  $product_attr = unserialize($value->type);
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.9.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.9.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.9.4
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
  = 11.9.4 (2022-10-19) =
344
  * Solved a PHP warning for an undefined variable
345
 
@@ -3812,6 +3815,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
3812
 
3813
  == Upgrade Notice ==
3814
 
 
 
 
3815
  = 11.9.4 =
3816
  Solved a PHP warning for an undefined variable
3817
 
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.9.5
9
 
10
  == Description ==
11
 
340
 
341
  === Changelog ===
342
 
343
+ = 11.9.5 (2022-10-20) =
344
+ * Solved a PHP warning for yoast attributes
345
+
346
  = 11.9.4 (2022-10-19) =
347
  * Solved a PHP warning for an undefined variable
348
 
3815
 
3816
  == Upgrade Notice ==
3817
 
3818
+ = 11.9.5 =
3819
+ Solved a PHP warning for yoast attributes
3820
+
3821
  = 11.9.4 =
3822
  Solved a PHP warning for an undefined variable
3823
 
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 11.9.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, 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.9.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.9.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
48
  * Plugin versionnumber, please do not override.
49
  * Define some constants
50
  */
51
+ define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.9.5' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54