Product Feed PRO for WooCommerce - Version 11.4.4

Version Description

Added links to TranslatePress tutorial Fixed an issue with the WooCommerce bundled product plugin that returned prices with more than 2 decimals

Download this release

Release Info

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

Code changes from version 11.4.3 to 11.4.4

classes/class-get-products.php CHANGED
@@ -2934,9 +2934,10 @@ class WooSEA_Get_Products {
2934
 
2935
  if($product->get_type() == "bundle"){
2936
  if ($this->woosea_is_plugin_active('woocommerce-product-bundles/woocommerce-product-bundles.php')){
2937
- $product_data['price'] = get_post_meta($product_data['id'], '_price', true);
2938
- $product_data['sale_price'] = get_post_meta($product_data['id'], '_sale_price', true);
2939
-
 
2940
  if(is_numeric($tax_rates[1]['rate'])){
2941
  $rounded_price = floatval(get_post_meta($product_data['id'], '_price', true));
2942
  $rounded_sale_price = floatval(get_post_meta($product_data['id'], '_sale_price', true));
2934
 
2935
  if($product->get_type() == "bundle"){
2936
  if ($this->woosea_is_plugin_active('woocommerce-product-bundles/woocommerce-product-bundles.php')){
2937
+ $product_data['price'] = round(get_post_meta($product_data['id'], '_price', true),2);
2938
+ $product_data['regular_price'] = round(get_post_meta($product_data['id'], '_regular_price', true),2);
2939
+ $product_data['sale_price'] = round(get_post_meta($product_data['id'], '_sale_price', true),2);
2940
+
2941
  if(is_numeric($tax_rates[1]['rate'])){
2942
  $rounded_price = floatval(get_post_meta($product_data['id'], '_price', true));
2943
  $rounded_sale_price = floatval(get_post_meta($product_data['id'], '_sale_price', true));
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.3',
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.4',
30
  jsonp: 'callback',
31
  dataType: 'jsonp',
32
  type: 'GET',
pages/admin/woosea-generate-feed-step-0.php CHANGED
@@ -97,7 +97,8 @@ if (array_key_exists('project_hash', $_GET)){
97
  <span class="dashicons dashicons-yes"></span><?php _e('Enhanched structured data on your product pages: more products approved in your Google Merchant Center','woo-product-feed-pro' );?> [<a href="https://adtribes.io/woocommerce-structured-data-bug/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=structured%20data%20bug" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
98
  <span class="dashicons dashicons-yes"></span><?php _e( 'Advanced product data manipulation','woo-product-feed-pro' );?> [<a href="https://adtribes.io/feature-product-data-manipulation/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=product%20data%20manipulation" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
99
  <span class="dashicons dashicons-yes"></span><?php _e( 'WPML support - including their currency switcher','woo-product-feed-pro' );?> [<a href="https://adtribes.io/wpml-support/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=wpml%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
100
- <span class="dashicons dashicons-yes"></span><?php _e( 'Polylang support','woo-product-feed-pro' );?> [<a href="https://adtribes.io/polylang-support-product-feeds/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=polylang%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
 
101
  <span class="dashicons dashicons-yes"></span>Aelia currency switcher support [<a href="https://adtribes.io/aelia-currency-switcher-feature/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=aelia%20support" target="_blank">Read more</a>];<br/>
102
  <span class="dashicons dashicons-yes"></span><?php _e( 'Facebook pixel feature','woo-product-feed-pro' );?> [<a href="https://adtribes.io/facebook-pixel-feature/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=facebook pixel feature" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/><br/>
103
  <?php _e( 'Upgrade to the','woo-product-feed-pro' );?> <strong><a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=top-notification&utm_content=notification" target="_blank"><?php _e( 'Elite version of our plugin</a></strong> to get all these features.','woo-product-feed-pro' );?>
@@ -545,7 +546,8 @@ if (array_key_exists('project_hash', $_GET)){
545
  <li><strong>5.</strong> <?php _e( 'WPML support','woo-product-feed-pro' );?></li>
546
  <li><strong>6.</strong> <?php _e( 'Aelia currency switcher support','woo-product-feed-pro' );?></li>
547
  <li><strong>7.</strong> <?php _e( 'Facebook pixel feature','woo-product-feed-pro' );?></li>
548
- <li><strong>8.</strong> <?php _e( 'Polylang support','woo-product-feed-pro' );?></li>
 
549
  </ul>
550
  <strong>
551
  <a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=page-0&utm_campaign=why-upgrade-box" target="_blank"><?php _e( 'Upgrade to Elite here!','woo-product-feed-pro' );?></a>
97
  <span class="dashicons dashicons-yes"></span><?php _e('Enhanched structured data on your product pages: more products approved in your Google Merchant Center','woo-product-feed-pro' );?> [<a href="https://adtribes.io/woocommerce-structured-data-bug/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=structured%20data%20bug" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
98
  <span class="dashicons dashicons-yes"></span><?php _e( 'Advanced product data manipulation','woo-product-feed-pro' );?> [<a href="https://adtribes.io/feature-product-data-manipulation/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=product%20data%20manipulation" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
99
  <span class="dashicons dashicons-yes"></span><?php _e( 'WPML support - including their currency switcher','woo-product-feed-pro' );?> [<a href="https://adtribes.io/wpml-support/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=wpml%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
100
+ <span class="dashicons dashicons-yes"></span><?php _e( 'Polylang support','woo-product-feed-pro' );?> [<a href="https://adtribes.io/polylang-support-product-feeds/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=polylang%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
101
+ <span class="dashicons dashicons-yes"></span><?php _e( 'TranslatePress support','woo-product-feed-pro' );?> [<a href="https://adtribes.io/translatepress-support-product-feeds/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=translatepress%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
102
  <span class="dashicons dashicons-yes"></span>Aelia currency switcher support [<a href="https://adtribes.io/aelia-currency-switcher-feature/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=aelia%20support" target="_blank">Read more</a>];<br/>
103
  <span class="dashicons dashicons-yes"></span><?php _e( 'Facebook pixel feature','woo-product-feed-pro' );?> [<a href="https://adtribes.io/facebook-pixel-feature/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=facebook pixel feature" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/><br/>
104
  <?php _e( 'Upgrade to the','woo-product-feed-pro' );?> <strong><a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=top-notification&utm_content=notification" target="_blank"><?php _e( 'Elite version of our plugin</a></strong> to get all these features.','woo-product-feed-pro' );?>
546
  <li><strong>5.</strong> <?php _e( 'WPML support','woo-product-feed-pro' );?></li>
547
  <li><strong>6.</strong> <?php _e( 'Aelia currency switcher support','woo-product-feed-pro' );?></li>
548
  <li><strong>7.</strong> <?php _e( 'Facebook pixel feature','woo-product-feed-pro' );?></li>
549
+ <li><strong>8.</strong> <?php _e( 'Polylang support','woo-product-feed-pro' );?></li>
550
+ <li><strong>9.</strong> <?php _e( 'TranslatePress support','woo-product-feed-pro' );?></li>
551
  </ul>
552
  <strong>
553
  <a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=page-0&utm_campaign=why-upgrade-box" target="_blank"><?php _e( 'Upgrade to Elite here!','woo-product-feed-pro' );?></a>
pages/admin/woosea-generate-feed-step-1.php CHANGED
@@ -219,7 +219,8 @@ function woosea_hierarchical_term_tree($category, $prev_mapped){
219
  <li><strong>5.</strong> <?php _e( 'WPML support','woo-product-feed-pro' );?></li>
220
  <li><strong>6.</strong> <?php _e( 'Aelia currency switcher support','woo-product-feed-pro' );?></li>
221
  <li><strong>7.</strong> <?php _e( 'Facebook pixel feature','woo-product-feed-pro' );?></li>
222
- <li><strong>8.</strong> <?php _e( 'Polylang support','woo-product-feed-pro' );?></li>
 
223
  </ul>
224
  <strong>
225
  <a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=page1&utm_campaign=why-upgrade-box" target="_blank"><?php _e( 'Upgrade to Elite here!','woo-product-feed-pro' );?></a>
@@ -265,7 +266,8 @@ function woosea_hierarchical_term_tree($category, $prev_mapped){
265
  <li><strong>8. <a href="https://adtribes.io/aelia-currency-switcher-feature/?utm_source=<?php print "$host";?>&utm_medium=page1&utm_campaign=aelia support" target="_blank"><?php _e( 'Enable Aelia currency switcher support','woo-product-feed-pro' );?></a></strong></li>
266
  <li><strong>9. <a href="https://adtribes.io/help-my-feed-processing-is-stuck/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=feed stuck" target="_blank"><?php _e( 'Help, my feed is stuck!','woo-product-feed-pro' );?></a></strong></li>
267
  <li><strong>10. <a href="https://adtribes.io/help-i-have-none-or-less-products-in-my-product-feed-than-expected/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=too few products" target="_blank"><?php _e( 'Help, my feed has no or too few products!','woo-product-feed-pro' );?></a></strong></li>
268
- <li><strong>11. <a href="https://adtribes.io/polylang-support-product-feeds/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=polylang support" target="_blank"><?php _e( 'How to use the Polylang feature', 'woo-product-feed-pro' );?></a></strong></li>
 
269
  </ul>
270
  </td>
271
  </tr>
219
  <li><strong>5.</strong> <?php _e( 'WPML support','woo-product-feed-pro' );?></li>
220
  <li><strong>6.</strong> <?php _e( 'Aelia currency switcher support','woo-product-feed-pro' );?></li>
221
  <li><strong>7.</strong> <?php _e( 'Facebook pixel feature','woo-product-feed-pro' );?></li>
222
+ <li><strong>8.</strong> <?php _e( 'Polylang support','woo-product-feed-pro' );?></li>
223
+ <li><strong>9.</strong> <?php _e( 'TranslatePress support','woo-product-feed-pro' );?></li>
224
  </ul>
225
  <strong>
226
  <a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=page1&utm_campaign=why-upgrade-box" target="_blank"><?php _e( 'Upgrade to Elite here!','woo-product-feed-pro' );?></a>
266
  <li><strong>8. <a href="https://adtribes.io/aelia-currency-switcher-feature/?utm_source=<?php print "$host";?>&utm_medium=page1&utm_campaign=aelia support" target="_blank"><?php _e( 'Enable Aelia currency switcher support','woo-product-feed-pro' );?></a></strong></li>
267
  <li><strong>9. <a href="https://adtribes.io/help-my-feed-processing-is-stuck/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=feed stuck" target="_blank"><?php _e( 'Help, my feed is stuck!','woo-product-feed-pro' );?></a></strong></li>
268
  <li><strong>10. <a href="https://adtribes.io/help-i-have-none-or-less-products-in-my-product-feed-than-expected/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=too few products" target="_blank"><?php _e( 'Help, my feed has no or too few products!','woo-product-feed-pro' );?></a></strong></li>
269
+ <li><strong>11. <a href="https://adtribes.io/polylang-support-product-feeds/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=polylang support" target="_blank"><?php _e( 'How to use the Polylang feature', 'woo-product-feed-pro' );?></a></strong></li>
270
+ <li><strong>12. <a href="https://adtribes.io/translatepress-support-product-feeds/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=translatepress support" target="_blank"><?php _e( 'How to use the TranslatePress feature', 'woo-product-feed-pro' );?></a></strong></li>
271
  </ul>
272
  </td>
273
  </tr>
pages/admin/woosea-manage-feed.php CHANGED
@@ -134,6 +134,7 @@ if (!wp_next_scheduled( 'woosea_cron_hook' ) ) {
134
  <span class="dashicons dashicons-yes"></span><?php _e( 'WPML support - including their currency switcher','woo-product-feed-pro' );?> [<a href="https://adtribes.io/wpml-support/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=wpml%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
135
  <span class="dashicons dashicons-yes"></span><?php _e( 'Aelia currency switcher support','woo-product-feed-pro' );?> [<a href="https://adtribes.io/aelia-currency-switcher-feature/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=aelia%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
136
  <span class="dashicons dashicons-yes"></span><?php _e( 'Polylang support','woo-product-feed-pro' );?> [<a href="https://adtribes.io/polylang-support-product-feeds/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=polylang%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
 
137
  <span class="dashicons dashicons-yes"></span><?php _e( 'Facebook pixel feature','woo-product-feed-pro' );?> [<a href="https://adtribes.io/facebook-pixel-feature/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=facebook pixel feature" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/><br/>
138
  <?php _e( 'Upgrade to the','woo-product-feed-pro' );?> <strong><a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=top-notification&utm_content=notification" target="_blank"><?php _e( 'Elite version of our plugin</a></strong> to get all these features.','woo-product-feed-pro' );?>
139
  </p>
@@ -326,7 +327,8 @@ if (!wp_next_scheduled( 'woosea_cron_hook' ) ) {
326
  <li><strong>5.</strong> <?php _e( 'WPML support','woo-product-feed-pro' );?></li>
327
  <li><strong>6.</strong> <?php _e( 'Aelia currency switcher support','woo-product-feed-pro' );?></li>
328
  <li><strong>7.</strong> <?php _e( 'Facebook pixel feature','woo-product-feed-pro' );?></li>
329
- <li><strong>8.</strong> <?php _e( 'Polylang support','woo-product-feed-pro' );?></li>
 
330
  </ul>
331
  <strong>
332
  <a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=why-upgrade-box" target="_blank"><?php _e( 'Upgrade to Elite here!','woo-product-feed-pro' );?></a>
134
  <span class="dashicons dashicons-yes"></span><?php _e( 'WPML support - including their currency switcher','woo-product-feed-pro' );?> [<a href="https://adtribes.io/wpml-support/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=wpml%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
135
  <span class="dashicons dashicons-yes"></span><?php _e( 'Aelia currency switcher support','woo-product-feed-pro' );?> [<a href="https://adtribes.io/aelia-currency-switcher-feature/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=aelia%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
136
  <span class="dashicons dashicons-yes"></span><?php _e( 'Polylang support','woo-product-feed-pro' );?> [<a href="https://adtribes.io/polylang-support-product-feeds/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=polylang%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
137
+ <span class="dashicons dashicons-yes"></span><?php _e( 'TranslatePress support','woo-product-feed-pro' );?> [<a href="https://adtribes.io/translatepress-support-product-feeds/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=translatepress%20support" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/>
138
  <span class="dashicons dashicons-yes"></span><?php _e( 'Facebook pixel feature','woo-product-feed-pro' );?> [<a href="https://adtribes.io/facebook-pixel-feature/?utm_source=<?php print "$host";?>&utm_medium=manage-feed&utm_campaign=facebook pixel feature" target="_blank"><?php _e( 'Read more','woo-product-feed-pro' );?></a>];<br/><br/>
139
  <?php _e( 'Upgrade to the','woo-product-feed-pro' );?> <strong><a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=top-notification&utm_content=notification" target="_blank"><?php _e( 'Elite version of our plugin</a></strong> to get all these features.','woo-product-feed-pro' );?>
140
  </p>
327
  <li><strong>5.</strong> <?php _e( 'WPML support','woo-product-feed-pro' );?></li>
328
  <li><strong>6.</strong> <?php _e( 'Aelia currency switcher support','woo-product-feed-pro' );?></li>
329
  <li><strong>7.</strong> <?php _e( 'Facebook pixel feature','woo-product-feed-pro' );?></li>
330
+ <li><strong>8.</strong> <?php _e( 'Polylang support','woo-product-feed-pro' );?></li>
331
+ <li><strong>9.</strong> <?php _e( 'TranslatePress support','woo-product-feed-pro' );?></li>
332
  </ul>
333
  <strong>
334
  <a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=manage-feed&utm_campaign=why-upgrade-box" target="_blank"><?php _e( 'Upgrade to Elite here!','woo-product-feed-pro' );?></a>
pages/admin/woosea-manage-settings.php CHANGED
@@ -727,7 +727,8 @@ if(isset($_GET["tab"])) {
727
  <li><strong>5.</strong> <?php _e( 'WPML support', 'woo-product-feed-pro' );?></li>
728
  <li><strong>6.</strong> <?php _e( 'Aelia currency switcher support', 'woo-product-feed-pro');?></li>
729
  <li><strong>7.</strong> <?php _e( 'Facebook pixel feature', 'woo-product-feed-pro');?></li>
730
- <li><strong>8.</strong> <?php _e( 'Polylang support', 'woo-product-feed-pro');?></li>
 
731
  </ul>
732
  <strong>
733
  <a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=manage-settings&utm_campaign=why-upgrade-box" target="_blank"><?php _e( 'Upgrade to Elite here!', 'woo-product-feed-pro' );?></a>
727
  <li><strong>5.</strong> <?php _e( 'WPML support', 'woo-product-feed-pro' );?></li>
728
  <li><strong>6.</strong> <?php _e( 'Aelia currency switcher support', 'woo-product-feed-pro');?></li>
729
  <li><strong>7.</strong> <?php _e( 'Facebook pixel feature', 'woo-product-feed-pro');?></li>
730
+ <li><strong>8.</strong> <?php _e( 'Polylang support', 'woo-product-feed-pro');?></li>
731
+ <li><strong>9.</strong> <?php _e( 'TranslatePress support', 'woo-product-feed-pro');?></li>
732
  </ul>
733
  <strong>
734
  <a href="https://adtribes.io/pro-vs-elite/?utm_source=<?php print"$host";?>&utm_medium=manage-settings&utm_campaign=why-upgrade-box" target="_blank"><?php _e( 'Upgrade to Elite here!', 'woo-product-feed-pro' );?></a>
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.3
9
 
10
  == Description ==
11
 
@@ -104,6 +104,9 @@ Our plugin supports the Aelia Currency Switcher
104
  = Polylang support (Elite version) =
105
  Our plugin supports Polylang
106
 
 
 
 
107
  = Google Shopping product feed tutorial =
108
  [youtube https://www.youtube.com/watch?v=2XzxwKDufGw]
109
 
@@ -120,6 +123,7 @@ Our plugin supports Polylang
120
  * Supports WCML, WooCommerce Multilingual
121
  * Supports Aelia Currency Switcher
122
  * Supports Polylang
 
123
  * Intuitive interface;
124
  * Supports product variations / variables;
125
  * Scheduled product feed refreshes: daily, twice-daily or every hour;
@@ -154,6 +158,7 @@ Some of the above mentioned feature can only be used by users who upgraded to th
154
  * WPML / WCML support
155
  * Aelia currency switcher support
156
  * Polylang support
 
157
  * Addition of the extra fields on your product edit pages
158
  * Data manipulation feature
159
  * WooCommerce structured data bug fix
@@ -337,6 +342,10 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
337
 
338
  === Changelog ===
339
 
 
 
 
 
340
  = 11.4.3 (2022-03-17) =
341
  * Fixed an issue for bundled products where VAT was added twice
342
 
@@ -3652,6 +3661,10 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
3652
 
3653
  == Upgrade Notice ==
3654
 
 
 
 
 
3655
  = 11.4.3 =
3656
  Fixed an issue for bundled products where VAT was added twice
3657
 
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.4
9
 
10
  == Description ==
11
 
104
  = Polylang support (Elite version) =
105
  Our plugin supports Polylang
106
 
107
+ = TranslatePress support (Elite version) =
108
+ Our plugin supports TranslatePress - beta
109
+
110
  = Google Shopping product feed tutorial =
111
  [youtube https://www.youtube.com/watch?v=2XzxwKDufGw]
112
 
123
  * Supports WCML, WooCommerce Multilingual
124
  * Supports Aelia Currency Switcher
125
  * Supports Polylang
126
+ * Supports TranslatePress
127
  * Intuitive interface;
128
  * Supports product variations / variables;
129
  * Scheduled product feed refreshes: daily, twice-daily or every hour;
158
  * WPML / WCML support
159
  * Aelia currency switcher support
160
  * Polylang support
161
+ * TranslatePress support
162
  * Addition of the extra fields on your product edit pages
163
  * Data manipulation feature
164
  * WooCommerce structured data bug fix
342
 
343
  === Changelog ===
344
 
345
+ = 11.4.4 (2022-03-21) =
346
+ * Added links to TranslatePress tutorial
347
+ * Fixed an issue with the WooCommerce bundled product plugin that returned prices with more than 2 decimals
348
+
349
  = 11.4.3 (2022-03-17) =
350
  * Fixed an issue for bundled products where VAT was added twice
351
 
3661
 
3662
  == Upgrade Notice ==
3663
 
3664
+ = 11.4.4 =
3665
+ Added links to TranslatePress tutorial
3666
+ Fixed an issue with the WooCommerce bundled product plugin that returned prices with more than 2 decimals
3667
+
3668
  = 11.4.3 =
3669
  Fixed an issue for bundled products where VAT was added twice
3670
 
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 11.4.3
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.3' );
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.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
  * Plugin versionnumber, please do not override.
49
  * Define some constants
50
  */
51
+ define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.4.4' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54