Product Feed PRO for WooCommerce - Version 11.9.9

Version Description

Checked for compatibility with WooCommerce 7.1 jQuery CSS no longer enqueued on the WP-admin dashboard

Download this release

Release Info

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

Code changes from version 11.9.8 to 11.9.9

Files changed (3) hide show
  1. js/woosea_key.js +1 -1
  2. readme.txt +9 -1
  3. woocommerce-sea.php +14 -10
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.8',
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.9',
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.1
8
- Stable tag: 11.9.8
9
 
10
  == Description ==
11
 
@@ -340,6 +340,10 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
340
 
341
  === Changelog ===
342
 
 
 
 
 
343
  = 11.9.8 (2022-11-04) =
344
  * Added support for PHP 8.1
345
  * Checked for compatibility with Wordpress 6.1
@@ -3825,6 +3829,10 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
3825
 
3826
  == Upgrade Notice ==
3827
 
 
 
 
 
3828
  = 11.9.8 =
3829
  Added support for PHP 8.1
3830
  Checked for compatibility with Wordpress 6.1
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.1
8
+ Stable tag: 11.9.9
9
 
10
  == Description ==
11
 
340
 
341
  === Changelog ===
342
 
343
+ = 11.9.9 (2022-11-09) =
344
+ * Checked for compatibility with WooCommerce 7.1
345
+ * jQuery CSS no longer enqueued on the WP-admin dashboard
346
+
347
  = 11.9.8 (2022-11-04) =
348
  * Added support for PHP 8.1
349
  * Checked for compatibility with Wordpress 6.1
3829
 
3830
  == Upgrade Notice ==
3831
 
3832
+ = 11.9.9 =
3833
+ Checked for compatibility with WooCommerce 7.1
3834
+ jQuery CSS no longer enqueued on the WP-admin dashboard
3835
+
3836
  = 11.9.8 =
3837
  Added support for PHP 8.1
3838
  Checked for compatibility with Wordpress 6.1
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 11.9.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, Catalog managers, Remarketing, Bing, Skroutz, Yandex, Comparison shopping websites and over a 100 channels more.
7
  * Author: AdTribes.io
@@ -17,7 +17,7 @@
17
  * Domain Path: /languages
18
  *
19
  * WC requires at least: 4.4
20
- * WC tested up to: 7.0
21
  *
22
  * Product Feed PRO for WooCommerce is free software: you can redistribute it and/or modify
23
  * it under the terms of the GNU General Public License as published by
@@ -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.7' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54
 
@@ -71,15 +71,19 @@ if ( ! defined( 'WOOCOMMERCESEA_PLUGIN_URL' ) ) {
71
  /**
72
  * Enqueue css assets
73
  */
74
- function woosea_styles() {
75
- wp_register_style( 'woosea_admin-css', plugins_url( '/css/woosea_admin.css', __FILE__ ), '',WOOCOMMERCESEA_PLUGIN_VERSION );
76
- wp_enqueue_style( 'woosea_admin-css' );
77
 
78
- wp_register_style( 'woosea_jquery_ui-css', plugins_url( '/css/jquery-ui.css', __FILE__ ), '',WOOCOMMERCESEA_PLUGIN_VERSION );
79
- wp_enqueue_style( 'woosea_jquery_ui-css' );
 
 
80
 
81
- wp_register_style( 'woosea_jquery_typeahead-css', plugins_url( '/css/jquery.typeahead.css', __FILE__ ), '',WOOCOMMERCESEA_PLUGIN_VERSION );
82
- wp_enqueue_style( 'woosea_jquery_typeahead-css' );
 
 
 
 
83
  }
84
  add_action( 'admin_enqueue_scripts' , 'woosea_styles' );
85
 
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
+ * Version: 11.9.9
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
17
  * Domain Path: /languages
18
  *
19
  * WC requires at least: 4.4
20
+ * WC tested up to: 7.1
21
  *
22
  * Product Feed PRO for WooCommerce is free software: you can redistribute it and/or modify
23
  * it under the terms of the GNU General Public License as published by
48
  * Plugin versionnumber, please do not override.
49
  * Define some constants
50
  */
51
+ define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.9.9' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54
 
71
  /**
72
  * Enqueue css assets
73
  */
74
+ function woosea_styles($hook) {
 
 
75
 
76
+ // Only register and enqueue CSS scripts from within the plugin itself
77
+ if (preg_match("/product-feed-pro/i",$hook)){
78
+ wp_register_style( 'woosea_admin-css', plugins_url( '/css/woosea_admin.css', __FILE__ ), '',WOOCOMMERCESEA_PLUGIN_VERSION );
79
+ wp_enqueue_style( 'woosea_admin-css' );
80
 
81
+ wp_register_style( 'woosea_jquery_ui-css', plugins_url( '/css/jquery-ui.css', __FILE__ ), '',WOOCOMMERCESEA_PLUGIN_VERSION );
82
+ wp_enqueue_style( 'woosea_jquery_ui-css' );
83
+
84
+ wp_register_style( 'woosea_jquery_typeahead-css', plugins_url( '/css/jquery.typeahead.css', __FILE__ ), '',WOOCOMMERCESEA_PLUGIN_VERSION );
85
+ wp_enqueue_style( 'woosea_jquery_typeahead-css' );
86
+ }
87
  }
88
  add_action( 'admin_enqueue_scripts' , 'woosea_styles' );
89