Advanced Woo Search - Version 1.90

Version Description

  • Update - Search query fix
Download this release

Release Info

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

Code changes from version 1.89 to 1.90

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.89
7
  Author: ILLID
8
  Author URI: https://advanced-woo-search.com/
9
  Text Domain: advanced-woo-search
@@ -16,7 +16,7 @@ if ( ! defined( 'ABSPATH' ) ) {
16
  exit;
17
  }
18
 
19
- define( 'AWS_VERSION', '1.89' );
20
 
21
 
22
  define( 'AWS_DIR', dirname( __FILE__ ) );
3
  /*
4
  Plugin Name: Advanced Woo Search
5
  Description: Advance ajax WooCommerce product search.
6
+ Version: 1.90
7
  Author: ILLID
8
  Author URI: https://advanced-woo-search.com/
9
  Text Domain: advanced-woo-search
16
  exit;
17
  }
18
 
19
+ define( 'AWS_VERSION', '1.90' );
20
 
21
 
22
  define( 'AWS_DIR', dirname( __FILE__ ) );
includes/class-aws-search.php CHANGED
@@ -493,28 +493,7 @@ if ( ! class_exists( 'AWS_Search' ) ) :
493
  $show_stock_status = AWS()->get_settings( 'show_stock' );
494
  $show_featured = AWS()->get_settings( 'show_featured' );
495
 
496
-
497
- if ( function_exists( 'wc_get_products' ) ) {
498
-
499
- $posts_items = wc_get_products( array(
500
- 'numberposts' => -1,
501
- 'posts_per_page' => -1,
502
- 'limit' => -1,
503
- 'status' => 'publish',
504
- 'post_status' => 'publish',
505
- 'include' => $posts_ids,
506
- 'ignore_sticky_posts' => true,
507
- 'suppress_filters' => true,
508
- 'no_found_rows' => 1,
509
- 'lang' => '',
510
- 'orderby' => 'include',
511
- ));
512
-
513
- } else {
514
-
515
- $posts_items = $posts_ids;
516
-
517
- }
518
 
519
  foreach ( $posts_items as $post_item ) {
520
 
493
  $show_stock_status = AWS()->get_settings( 'show_stock' );
494
  $show_featured = AWS()->get_settings( 'show_featured' );
495
 
496
+ $posts_items = $posts_ids;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
497
 
498
  foreach ( $posts_items as $post_item ) {
499
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
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: 5.3
7
- Stable tag: 1.89
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -104,6 +104,9 @@ Yep. This plugin is always compatible with the latest version of Woocommerce?
104
 
105
  == Changelog ==
106
 
 
 
 
107
  = 1.89 =
108
  * Add - Highlight option
109
  * Fix - Index method bug
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: 5.3
7
+ Stable tag: 1.90
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
104
 
105
  == Changelog ==
106
 
107
+ = 1.90 =
108
+ * Update - Search query fix
109
+
110
  = 1.89 =
111
  * Add - Highlight option
112
  * Fix - Index method bug