Product Feed PRO for WooCommerce - Version 9.0.4

Version Description

Removed some absolete queued JS scripts

Download this release

Release Info

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

Code changes from version 9.0.3 to 9.0.4

Files changed (3) hide show
  1. js/woosea_key.js +1 -1
  2. readme.txt +7 -1
  3. woocommerce-sea.php +2 -30
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=9.0.3',
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=9.0.4',
31
  jsonp: 'callback',
32
  dataType: 'jsonp',
33
  type: 'GET',
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.5
8
- Stable tag: 9.0.3
9
 
10
  == Description ==
11
 
@@ -321,6 +321,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
321
 
322
  === Changelog ===
323
 
 
 
 
324
  = 9.0.3 (2020-11-05) =
325
  * Added support for adding multiple images to Australian Kogan feeds
326
 
@@ -2879,6 +2882,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
2879
 
2880
  == Upgrade Notice ==
2881
 
 
 
 
2882
  = 9.0.3 =
2883
  Added support for adding multiple images to Australian Kogan feeds
2884
 
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.5
8
+ Stable tag: 9.0.4
9
 
10
  == Description ==
11
 
321
 
322
  === Changelog ===
323
 
324
+ = 9.0.4 (2020-11-08) =
325
+ * Removed some absolete queued JS scripts
326
+
327
  = 9.0.3 (2020-11-05) =
328
  * Added support for adding multiple images to Australian Kogan feeds
329
 
2882
 
2883
  == Upgrade Notice ==
2884
 
2885
+ = 9.0.4 =
2886
+ Removed some absolete queued JS scripts
2887
+
2888
  = 9.0.3 =
2889
  Added support for adding multiple images to Australian Kogan feeds
2890
 
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 9.0.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, 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', '9.0.3' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54
 
@@ -145,34 +145,6 @@ function woosea_scripts($hook) {
145
  }
146
  add_action( 'admin_enqueue_scripts' , 'woosea_scripts' );
147
 
148
- /**
149
- * Enqueue js assets front pages
150
- */
151
- function woosea_front_scripts() {
152
- $add_facebook_pixel = get_option ('add_facebook_pixel');
153
-
154
- if($add_facebook_pixel == "yes"){
155
- // JS for manage projects page
156
- wp_enqueue_script( 'woosea_add_cart-js', plugin_dir_url( __FILE__ ) . 'js/woosea_add_cart.js', array('jquery'), true );
157
-
158
- //passing variables to the javascript file
159
- wp_localize_script('woosea_add_cart-js', 'frontEndAjax', array(
160
- 'ajaxurl' => admin_url( 'admin-ajax.php' ),
161
- 'nonce' => wp_create_nonce('woosea_ajax_nonce')
162
- ));
163
- }
164
-
165
- // Always register orders conversion tracking
166
- // wp_enqueue_script( 'woosea_tracking-js', plugin_dir_url( __FILE__ ) . 'js/woosea_tracking.js', array('jquery'), true );
167
-
168
- //passing variables to the javascript file
169
- // wp_localize_script('woosea_tracking-js', 'frontEndAjax', array(
170
- // 'ajaxurl' => admin_url( 'admin-ajax.php' ),
171
- // 'nonce' => wp_create_nonce('woosea_ajax_nonce')
172
- //));
173
- }
174
- add_action( 'wp_enqueue_scripts' , 'woosea_front_scripts' );
175
-
176
  /**
177
  * Get product variation ID based on dropdown selects product page
178
  */
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
+ * Version: 9.0.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, 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', '9.0.4' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54
 
145
  }
146
  add_action( 'admin_enqueue_scripts' , 'woosea_scripts' );
147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  /**
149
  * Get product variation ID based on dropdown selects product page
150
  */