Advanced Woo Search - Version 1.19

Version Description

  • Fix bugs
Download this release

Release Info

Developer Mihail Barinov
Plugin Icon 128x128 Advanced Woo Search
Version 1.19
Comparing to
See all releases

Code changes from version 1.18 to 1.19

advanced-woo-search.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  Plugin Name: Advanced Woo Search
5
  Description: Advance ajax WooCommerce product search.
6
- Version: 1.18
7
  Author: ILLID
8
  Text Domain: aws
9
  */
@@ -13,7 +13,7 @@ if ( ! defined( 'ABSPATH' ) ) {
13
  exit;
14
  }
15
 
16
- define( 'AWS_VERSION', '1.18' );
17
 
18
 
19
  define( 'AWS_DIR', dirname( __FILE__ ) );
3
  /*
4
  Plugin Name: Advanced Woo Search
5
  Description: Advance ajax WooCommerce product search.
6
+ Version: 1.19
7
  Author: ILLID
8
  Text Domain: aws
9
  */
13
  exit;
14
  }
15
 
16
+ define( 'AWS_VERSION', '1.19' );
17
 
18
 
19
  define( 'AWS_DIR', dirname( __FILE__ ) );
assets/css/common.css CHANGED
@@ -70,7 +70,7 @@
70
  margin: 0 !important;
71
 
72
  max-height: 300px;
73
- overflow-y: scroll;
74
  }
75
 
76
  .aws-search-result ul li {
70
  margin: 0 !important;
71
 
72
  max-height: 300px;
73
+ overflow-y: auto;
74
  }
75
 
76
  .aws-search-result ul li {
includes/class-aws-table.php CHANGED
@@ -192,8 +192,8 @@ if ( ! class_exists( 'AWS_Table' ) ) :
192
 
193
  $product = wc_get_product( $id );
194
 
195
- $in_stock = ( $product->stock_status === 'outofstock' ) ? 0 : 1;
196
- $visibility = $product->catalog_visibility ? $product->catalog_visibility : ( $product->visibility ? $product->visibility : 'visible' );
197
 
198
  $sku = $product->get_sku();
199
 
192
 
193
  $product = wc_get_product( $id );
194
 
195
+ $in_stock = ( $product->get_stock_status() === 'outofstock' ) ? 0 : 1;
196
+ $visibility = $product->get_catalog_visibility() ? $product->get_catalog_visibility() : ( $product->get_visibility() ? $product->get_visibility() : 'visible' );
197
 
198
  $sku = $product->get_sku();
199
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Mihail Barinov
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GSE37FC4Y7CEY
4
  Tags: widget, plugin, woocommerce, search, product search, woocommerce search, ajax search, live search, custom search, ajax, shortcode, better search, relevance search, relevant search, search by sku, search plugin, shop, store, wordpress search, wp ajax search, wp search, wp search plugin, sidebar, ecommerce, merketing, products, category search, instant-search, search highlight, woocommerce advanced search, woocommerce live search, WooCommerce Plugin, woocommerce product search
5
  Requires at least: 4.0
6
- Tested up to: 4.7.5
7
- Stable tag: 1.18
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -73,6 +73,9 @@ Yep. This plugin is always compatible with the latest version of Woocommerce?
73
 
74
  == Changelog ==
75
 
 
 
 
76
  = 1.18 =
77
  * Fix bugs
78
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GSE37FC4Y7CEY
4
  Tags: widget, plugin, woocommerce, search, product search, woocommerce search, ajax search, live search, custom search, ajax, shortcode, better search, relevance search, relevant search, search by sku, search plugin, shop, store, wordpress search, wp ajax search, wp search, wp search plugin, sidebar, ecommerce, merketing, products, category search, instant-search, search highlight, woocommerce advanced search, woocommerce live search, WooCommerce Plugin, woocommerce product search
5
  Requires at least: 4.0
6
+ Tested up to: 4.8
7
+ Stable tag: 1.19
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
73
 
74
  == Changelog ==
75
 
76
+ = 1.19 =
77
+ * Fix bugs
78
+
79
  = 1.18 =
80
  * Fix bugs
81