Product Feed PRO for WooCommerce - Version 11.2.1

Version Description

Fixed an issue for individually priced bundled products that had a discount configured, it was not adding the VAT to those prices.

Download this release

Release Info

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

Code changes from version 11.2.0 to 11.2.1

classes/class-get-products.php CHANGED
@@ -2912,9 +2912,11 @@ class WooSEA_Get_Products {
2912
  if ($this->woosea_is_plugin_active('woocommerce-product-bundles/woocommerce-product-bundles.php')){
2913
  $product_data['price'] = get_post_meta($product_data['id'], '_price', true);
2914
  $product_data['sale_price'] = get_post_meta($product_data['id'], '_sale_price', true);
 
2915
  if(is_numeric($tax_rates[1]['rate'])){
2916
- $product_data['price_forced'] = round(get_post_meta($product_data['id'], '_price', true) * (100+$tax_rates[1]['rate'])/100,2);
2917
- $product_data['regular_price'] = round(get_post_meta($product_data['id'], '_regular_price', true) * (100+$tax_rates[1]['rate'])/100,2);
 
2918
  } else {
2919
  $product_data['price_forced'] = $product_data['price'];
2920
  $product_data['regular_price'] = $product_data['price'];
2912
  if ($this->woosea_is_plugin_active('woocommerce-product-bundles/woocommerce-product-bundles.php')){
2913
  $product_data['price'] = get_post_meta($product_data['id'], '_price', true);
2914
  $product_data['sale_price'] = get_post_meta($product_data['id'], '_sale_price', true);
2915
+
2916
  if(is_numeric($tax_rates[1]['rate'])){
2917
+ $product_data['price'] = round(get_post_meta($product_data['id'], '_price', true) * (100+$tax_rates[1]['rate'])/100,2);
2918
+ $product_data['sale_price'] = round(get_post_meta($product_data['id'], '_sale_price', true) * (100+$tax_rates[1]['rate'])/100,2);
2919
+ $product_data['regular_price'] = round(get_post_meta($product_data['id'], '_regular_price', true) * (100+$tax_rates[1]['rate'])/100,2);
2920
  } else {
2921
  $product_data['price_forced'] = $product_data['price'];
2922
  $product_data['regular_price'] = $product_data['price'];
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.2.0',
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.2.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.2.0
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.2.0 (2022-01-26) =
341
  * Fixed an issue where the plugin crached on Skroutz feeds when simple products were changed into variable products or the other way around
342
 
@@ -3578,6 +3581,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
3578
 
3579
  == Upgrade Notice ==
3580
 
 
 
 
3581
  = 11.2.0 =
3582
  Fixed an issue where the plugin crached on Skroutz feeds when simple products were changed into variable products or the other way around
3583
 
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.2.1
9
 
10
  == Description ==
11
 
337
 
338
  === Changelog ===
339
 
340
+ = 11.2.1 (2022-01-30) =
341
+ * Fixed an issue for individually priced bundled products that had a discount configured, it was not adding the VAT to those prices.
342
+
343
  = 11.2.0 (2022-01-26) =
344
  * Fixed an issue where the plugin crached on Skroutz feeds when simple products were changed into variable products or the other way around
345
 
3581
 
3582
  == Upgrade Notice ==
3583
 
3584
+ = 11.2.1 =
3585
+ Fixed an issue for individually priced bundled products that had a discount configured, it was not adding the VAT to those prices.
3586
+
3587
  = 11.2.0 =
3588
  Fixed an issue where the plugin crached on Skroutz feeds when simple products were changed into variable products or the other way around
3589
 
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 11.2.0
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.2.0' );
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.2.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.2.1' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54