Product Feed PRO for WooCommerce - Version 11.2.7

Version Description

Fixed some minor CSS issues for the category mapping autosuggest Changed plugin title in readme.txt file

Download this release

Release Info

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

Code changes from version 11.2.6 to 11.2.7

js/woosea_autocomplete.js CHANGED
@@ -5706,12 +5706,10 @@ jQuery(document).ready(function($) {
5706
  jQuery(".js-autosuggest").on('click',function(){
5707
  var className = $(this).attr("class").split(' ')[3];
5708
  var rowCount = className.split("_")[1]
5709
-
5710
- //$('#the-basics-11603 .autocomplete_11603').typeahead({
5711
  jQuery("." + className).typeahead({
5712
- //jQuery(".autocomplete_" + rowCount ).typeahead({
5713
  input: '.js-autosuggest',
5714
- source: google_taxonomy,
5715
  hint: true,
5716
  loadingAnimation: false,
5717
  items: 10,
@@ -5722,7 +5720,6 @@ jQuery(document).ready(function($) {
5722
  jQuery( ".autocomplete_" + rowCount ).focus();
5723
 
5724
  jQuery(this).on('change', function(){ // on change of state
5725
-
5726
  var minimum = 1;
5727
  var len = jQuery(this).val().length;
5728
  var project_hash = $("#project_hash").val();
@@ -5733,7 +5730,6 @@ jQuery(document).ready(function($) {
5733
 
5734
  if (len >= minimum){
5735
  if ( !isNaN(parseInt(map_to_category)) ) {
5736
-
5737
  jQuery.ajax({
5738
  method: "POST",
5739
  url: ajaxurl,
5706
  jQuery(".js-autosuggest").on('click',function(){
5707
  var className = $(this).attr("class").split(' ')[3];
5708
  var rowCount = className.split("_")[1]
5709
+
 
5710
  jQuery("." + className).typeahead({
 
5711
  input: '.js-autosuggest',
5712
+ source: google_taxonomy,
5713
  hint: true,
5714
  loadingAnimation: false,
5715
  items: 10,
5720
  jQuery( ".autocomplete_" + rowCount ).focus();
5721
 
5722
  jQuery(this).on('change', function(){ // on change of state
 
5723
  var minimum = 1;
5724
  var len = jQuery(this).val().length;
5725
  var project_hash = $("#project_hash").val();
5730
 
5731
  if (len >= minimum){
5732
  if ( !isNaN(parseInt(map_to_category)) ) {
 
5733
  jQuery.ajax({
5734
  method: "POST",
5735
  url: ajaxurl,
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.6',
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.7',
30
  jsonp: 'callback',
31
  dataType: 'jsonp',
32
  type: 'GET',
pages/admin/woosea-generate-feed-step-1.php CHANGED
@@ -106,7 +106,7 @@ function woosea_hierarchical_term_tree($category, $prev_mapped){
106
 
107
  $r .= "<tr class=\"catmapping\">";
108
  $r .= "<td><input type=\"hidden\" name=\"mappings[$x][rowCount]\" value=\"$x\"><input type=\"hidden\" name=\"mappings[$x][categoryId]\" value=\"$woo_category_id\"><input type=\"hidden\" name=\"mappings[$x][criteria]\" class=\"input-field-large\" id=\"$woo_category_id\" value=\"$woo_category\">$woo_category ($sub_category->count)</td>";
109
- $r .= "<td><div id=\"the-basics-$x\"><input type=\"search\" name=\"mappings[$x][map_to_category]\" class=\"$mapped_active_class js-typeahead js-autosuggest autocomplete_$x\" value=\"$mapped_category\"></div></td>";
110
  if(($yo == $nr_categories) AND ($nr_subcats == 0)){
111
  $r .= "<td><span class=\"copy_category_$x\" style=\"display: inline-block;\" title=\"Copy this category to all others\"></span></td>";
112
  } else {
@@ -120,7 +120,7 @@ function woosea_hierarchical_term_tree($category, $prev_mapped){
120
  } else {
121
  $r .= "<tr class=\"catmapping\">";
122
  $r .= "<td><input type=\"hidden\" name=\"mappings[$x][rowCount]\" value=\"$x\"><input type=\"hidden\" name=\"mappings[$x][categoryId]\" value=\"$woo_category_id\"><input type=\"hidden\" name=\"mappings[$x][criteria]\" class=\"input-field-large\" id=\"$woo_category_id\" value=\"$woo_category\">-- $woo_category ($sub_category->count)</td>";
123
- $r .= "<td><div id=\"the-basics-$x\"><input type=\"search\" name=\"mappings[$x][map_to_category]\" class=\"$mapped_active_class js-typeahead js-autosuggest autocomplete_$x mother_$sub_category->parent\" value=\"$mapped_category\"></div></td>";
124
  $r .= "<td><span class=\"copy_category_$x\" style=\"display: inline-block;\" title=\"Copy this category to all others\"></span></td>";
125
  $r .= "</tr>";
126
  }
106
 
107
  $r .= "<tr class=\"catmapping\">";
108
  $r .= "<td><input type=\"hidden\" name=\"mappings[$x][rowCount]\" value=\"$x\"><input type=\"hidden\" name=\"mappings[$x][categoryId]\" value=\"$woo_category_id\"><input type=\"hidden\" name=\"mappings[$x][criteria]\" class=\"input-field-large\" id=\"$woo_category_id\" value=\"$woo_category\">$woo_category ($sub_category->count)</td>";
109
+ $r .= "<td><div id=\"the-basics-$x\"><input type=\"text\" name=\"mappings[$x][map_to_category]\" class=\"$mapped_active_class js-typeahead js-autosuggest autocomplete_$x\" value=\"$mapped_category\"></div></td>";
110
  if(($yo == $nr_categories) AND ($nr_subcats == 0)){
111
  $r .= "<td><span class=\"copy_category_$x\" style=\"display: inline-block;\" title=\"Copy this category to all others\"></span></td>";
112
  } else {
120
  } else {
121
  $r .= "<tr class=\"catmapping\">";
122
  $r .= "<td><input type=\"hidden\" name=\"mappings[$x][rowCount]\" value=\"$x\"><input type=\"hidden\" name=\"mappings[$x][categoryId]\" value=\"$woo_category_id\"><input type=\"hidden\" name=\"mappings[$x][criteria]\" class=\"input-field-large\" id=\"$woo_category_id\" value=\"$woo_category\">-- $woo_category ($sub_category->count)</td>";
123
+ $r .= "<td><div id=\"the-basics-$x\"><input type=\"text\" name=\"mappings[$x][map_to_category]\" class=\"$mapped_active_class js-typeahead js-autosuggest autocomplete_$x mother_$sub_category->parent\" value=\"$mapped_category\"></div></td>";
124
  $r .= "<td><span class=\"copy_category_$x\" style=\"display: inline-block;\" title=\"Copy this category to all others\"></span></td>";
125
  $r .= "</tr>";
126
  }
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
- === Product Feed PRO for WooCommerce ===
2
  Contributors: jorisverwater,supportadtribes,evavangelooven
3
  License: GPLv3
4
  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.6
9
 
10
  == Description ==
11
 
@@ -337,6 +337,10 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
337
 
338
  === Changelog ===
339
 
 
 
 
 
340
  = 11.2.6 (2022-02-09) =
341
  * Tested for WooCommerce 6.2
342
 
@@ -3596,6 +3600,10 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
3596
 
3597
  == Upgrade Notice ==
3598
 
 
 
 
 
3599
  = 11.2.6 =
3600
  Tested for WooCommerce 6.2
3601
 
1
+ === Product Feed PRO for WooCommerce - Google Shopping, Facebook and many more ===
2
  Contributors: jorisverwater,supportadtribes,evavangelooven
3
  License: GPLv3
4
  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.7
9
 
10
  == Description ==
11
 
337
 
338
  === Changelog ===
339
 
340
+ = 11.2.7 (2022-02-10) =
341
+ * Fixed some minor CSS issues for the category mapping autosuggest
342
+ * Changed plugin title in readme.txt file
343
+
344
  = 11.2.6 (2022-02-09) =
345
  * Tested for WooCommerce 6.2
346
 
3600
 
3601
  == Upgrade Notice ==
3602
 
3603
+ = 11.2.7 =
3604
+ Fixed some minor CSS issues for the category mapping autosuggest
3605
+ Changed plugin title in readme.txt file
3606
+
3607
  = 11.2.6 =
3608
  Tested for WooCommerce 6.2
3609
 
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 11.2.6
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.6' );
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.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, 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.7' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54