Product Feed PRO for WooCommerce - Version 7.6.8

Version Description

Function check on cl_object_id changed to check if sitepress-multilingual-cms is active

Download this release

Release Info

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

Code changes from version 7.6.7 to 7.6.8

TODO.txt CHANGED
@@ -7,7 +7,7 @@ Tutorial / Blog posts:
7
  Priority issues:
8
  - Make category path primary (Yoast) category
9
  - Add possibility to copy feed configuration from one WooCommerce instance to the other instance
10
- - Add woosea GTIN to JSON-LD
11
  - Change XML header for Elite users (so it doesn't say its free for example)
12
  - Make extra woosea fields available for front-end usage
13
  - Only update feed when changes to products have been made
7
  Priority issues:
8
  - Make category path primary (Yoast) category
9
  - Add possibility to copy feed configuration from one WooCommerce instance to the other instance
10
+ - Add support for Polylang
11
  - Change XML header for Elite users (so it doesn't say its free for example)
12
  - Make extra woosea fields available for front-end usage
13
  - Only update feed when changes to products have been made
classes/class-get-products.php CHANGED
@@ -176,7 +176,8 @@ class WooSEA_Get_Products {
176
  * As that does not have ?lang= behind the links
177
  */
178
  if(isset($feed_config['WPML'])){
179
- if ( function_exists('icl_object_id') ) {
 
180
  global $sitepress;
181
  $default_lang = $sitepress->get_default_language();
182
 
176
  * As that does not have ?lang= behind the links
177
  */
178
  if(isset($feed_config['WPML'])){
179
+ if (is_plugin_active('sitepress-multilingual-cms')){
180
+ //if ( function_exists('icl_object_id') ) {
181
  global $sitepress;
182
  $default_lang = $sitepress->get_default_language();
183
 
js/woosea_key.js CHANGED
@@ -27,7 +27,7 @@ jQuery(document).ready(function($) {
27
  var license_key = $('#license-key').val();
28
 
29
  jQuery.ajax({
30
- url: 'https://www.adtribes.io/check/license.php?key=' + license_key + '&email=' + license_email + '&domain=' + root_domain + '&version=7.6.7',
31
  jsonp: 'callback',
32
  dataType: 'jsonp',
33
  type: 'GET',
27
  var license_key = $('#license-key').val();
28
 
29
  jQuery.ajax({
30
+ url: 'https://www.adtribes.io/check/license.php?key=' + license_key + '&email=' + license_email + '&domain=' + root_domain + '&version=7.6.8',
31
  jsonp: 'callback',
32
  dataType: 'jsonp',
33
  type: 'GET',
pages/admin/woosea-generate-feed-step-0.php CHANGED
@@ -174,9 +174,8 @@ if (array_key_exists('project_hash', $_GET)){
174
  }
175
  }
176
 
177
-
178
- if ( function_exists('icl_object_id') ) {
179
-
180
  $add_wpml_support = get_option ('add_wpml_support');
181
  if($add_wpml_support == "yes"){
182
  // Adding WPML support here
174
  }
175
  }
176
 
177
+ if (is_plugin_active('sitepress-multilingual-cms')){
178
+ //if ( function_exists('icl_object_id') ) {
 
179
  $add_wpml_support = get_option ('add_wpml_support');
180
  if($add_wpml_support == "yes"){
181
  // Adding WPML support here
pages/admin/woosea-generate-feed-step-1.php CHANGED
@@ -25,7 +25,8 @@ if (array_key_exists('project_hash', $_GET)){
25
  $manage_project = "yes";
26
 
27
  if(isset($project['WPML'])){
28
- if ( function_exists('icl_object_id') ) {
 
29
  // Get WPML language
30
  global $sitepress;
31
  $lang = $project['WPML'];
25
  $manage_project = "yes";
26
 
27
  if(isset($project['WPML'])){
28
+ if (is_plugin_active('sitepress-multilingual-cms')){
29
+ //if ( function_exists('icl_object_id') ) {
30
  // Get WPML language
31
  global $sitepress;
32
  $lang = $project['WPML'];
pages/admin/woosea-generate-feed-step-7.php CHANGED
@@ -29,7 +29,8 @@ if (array_key_exists('project_hash', $_GET)){
29
  $manage_project = "yes";
30
 
31
  if(isset($project['WPML'])){
32
- if ( function_exists('icl_object_id') ) {
 
33
  // Get WPML language
34
  global $sitepress;
35
  $lang = $project['WPML'];
29
  $manage_project = "yes";
30
 
31
  if(isset($project['WPML'])){
32
+ if (is_plugin_active('sitepress-multilingual-cms')){
33
+ //if ( function_exists('icl_object_id') ) {
34
  // Get WPML language
35
  global $sitepress;
36
  $lang = $project['WPML'];
readme.txt CHANGED
@@ -5,7 +5,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
5
  Tags: Product Feed, Google Shopping, Google Shopping Feed, WooCommerce Product Feed, WooCommerce Product Feed PRO, Bing Shopping, Bing product feed, Bing remarking, Google Merchant Feed, Google DRM Feed, Google Dynamic Remarketing Feed, Facebook feed, Google feed, Bing feed, Facebook Product Feed, Facebook Dynamic remarketing, Data Feed, WooCommerce Feed, XML product feed, CSV product feed, TSV, TXT product feed, comparison shopping engines, comparison shopping websites, vergelijk.nl, vergelijk.be, vertaa.fi, beslist.nl, kieskeurig.nl, bol.com, raketten, pricerunner, pricegrabber, Buy, leGuide, Kelkoo, Twenga, Yandex, Etsy, Dealtime, Shopzilla, Billiger, Google Product Review feed
6
  Requires at least: 4.5
7
  Tested up to: 5.3
8
- Stable tag: 7.6.7
9
 
10
  == Description ==
11
 
@@ -312,6 +312,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
312
 
313
  === Changelog ===
314
 
 
 
 
315
  = 7.6.7 (2020-03-06) =
316
  * Added a new attribute named "All gallery images (comma separated)" which adds all product gallery images on one line, comma separated
317
 
@@ -2443,6 +2446,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
2443
 
2444
  == Upgrade Notice ==
2445
 
 
 
 
2446
  = 7.6.7 =
2447
  Added a new attribute named "All gallery images (comma separated)" which adds all product gallery images on one line, comma separated
2448
 
5
  Tags: Product Feed, Google Shopping, Google Shopping Feed, WooCommerce Product Feed, WooCommerce Product Feed PRO, Bing Shopping, Bing product feed, Bing remarking, Google Merchant Feed, Google DRM Feed, Google Dynamic Remarketing Feed, Facebook feed, Google feed, Bing feed, Facebook Product Feed, Facebook Dynamic remarketing, Data Feed, WooCommerce Feed, XML product feed, CSV product feed, TSV, TXT product feed, comparison shopping engines, comparison shopping websites, vergelijk.nl, vergelijk.be, vertaa.fi, beslist.nl, kieskeurig.nl, bol.com, raketten, pricerunner, pricegrabber, Buy, leGuide, Kelkoo, Twenga, Yandex, Etsy, Dealtime, Shopzilla, Billiger, Google Product Review feed
6
  Requires at least: 4.5
7
  Tested up to: 5.3
8
+ Stable tag: 7.6.8
9
 
10
  == Description ==
11
 
312
 
313
  === Changelog ===
314
 
315
+ = 7.6.8 (2020-03-07) =
316
+ * Function check on cl_object_id changed to check if sitepress-multilingual-cms is active
317
+
318
  = 7.6.7 (2020-03-06) =
319
  * Added a new attribute named "All gallery images (comma separated)" which adds all product gallery images on one line, comma separated
320
 
2446
 
2447
  == Upgrade Notice ==
2448
 
2449
+ = 7.6.8 =
2450
+ Function check on cl_object_id changed to check if sitepress-multilingual-cms is active
2451
+
2452
  = 7.6.7 =
2453
  Added a new attribute named "All gallery images (comma separated)" which adds all product gallery images on one line, comma separated
2454
 
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 7.6.7
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, 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', '7.6.7' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54
 
@@ -4215,7 +4215,7 @@ function woosea_license_valid(){
4215
 
4216
  if(!empty($license_information['license_key'])){
4217
  $curl = curl_init();
4218
- $url = "https://www.adtribes.io/check/license.php?key=$license_information[license_key]&email=$license_information[license_email]&domain=$domain&version=7.6.7";
4219
 
4220
  curl_setopt_array($curl, array(
4221
  CURLOPT_RETURNTRANSFER => 1,
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
+ * Version: 7.6.8
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, 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', '7.6.8' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54
 
4215
 
4216
  if(!empty($license_information['license_key'])){
4217
  $curl = curl_init();
4218
+ $url = "https://www.adtribes.io/check/license.php?key=$license_information[license_key]&email=$license_information[license_email]&domain=$domain&version=7.6.8";
4219
 
4220
  curl_setopt_array($curl, array(
4221
  CURLOPT_RETURNTRANSFER => 1,