Changeset 3310406
- Timestamp:
- 06/12/2025 10:15:30 AM (9 months ago)
- Location:
- woocommerce-predictive-search/trunk
- Files:
-
- 3 edited
-
includes/class-wc-predictive-search.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
wc-predictive-search.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-predictive-search/trunk/includes/class-wc-predictive-search.php
r3116923 r3310406 48 48 public function general_sql( $main_sql ) { 49 49 50 if ( empty( $main_sql ) ) { 51 return ''; 52 } 53 50 54 $select_sql = ''; 51 55 if ( is_array( $main_sql['select'] ) && count( $main_sql['select'] ) > 0 ) { … … 172 176 } 173 177 178 if ( ! is_array( $main_sql ) ) { 179 $main_sql = array(); 180 } 174 181 $main_sql = array_merge_recursive( $main_sql, $wpml_sql ); 175 182 … … 186 193 187 194 $sql = $this->get_product_search_sql( $search_keyword, 1, 0, $woocommerce_search_focus_enable, $woocommerce_search_focus_plugin, $post_type, $term_id, $current_lang, true ); 195 196 if ( empty( $sql ) ) { 197 return false; 198 } 188 199 189 200 $sql = "SELECT EXISTS( " . $sql . ")"; -
woocommerce-predictive-search/trunk/readme.txt
r3272185 r3310406 4 4 Tags: WooCommerce search, Predictive Search, WooCommerce, Predictive Search, Live Search, Elementor WooCommerce Search 5 5 Requires at least: 6.0 6 Tested up to: 6.8 7 Stable tag: 6.1. 16 Tested up to: 6.8.1 7 Stable tag: 6.1.2 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 178 178 179 179 == Changelog == 180 181 = 6.1.2 - 2025/06/12 = 182 * This maintenance release has 1 bug fix and compatibility with WordPress 6.8.1 and WooCommerce 9.9.3 183 * Tweak - Tested for compatibility with WordPress 6.8.1 184 * Tweak - Tested for compatibility with WooCommerce 9.9.3 185 * Fix - Validate args before generate sql command 180 186 181 187 = 6.1.1 - 2024/07/20 = … … 1100 1106 == Upgrade Notice == 1101 1107 1108 = 6.1.2 = 1109 This maintenance release has 1 bug fix and compatibility with WordPress 6.8.1 and WooCommerce 9.9.3 1110 1102 1111 = 6.1.1 = 1103 1112 This maintenance release has a security hardening patch. Please upgrade now. -
woocommerce-predictive-search/trunk/wc-predictive-search.php
r3272185 r3310406 4 4 Plugin URI: https://a3rev.com/shop/woocommerce-predictive-search/ 5 5 Description: With WooCommerce Predictive Search Lite you can add an awesome Predictive Products Search widget to any widgetized area on your site. 6 Version: 6.1. 16 Version: 6.1.2 7 7 Author: a3rev Software 8 8 Author URI: https://www.a3rev.com/ 9 9 Requires at least: 6.0 10 Tested up to: 6.8 10 Tested up to: 6.8.1 11 11 Text Domain: woocommerce-predictive-search 12 12 WC requires at least: 6.0.0 13 WC tested up to: 9. 8.013 WC tested up to: 9.9.3 14 14 Domain Path: /languages 15 15 License: GPLv2 or later … … 42 42 define( 'WOOPS_KEY', 'woo_predictive_search' ); 43 43 define( 'WOOPS_PREFIX', 'wc_predictive_search_' ); 44 define( 'WOOPS_VERSION', '6.1. 1' );44 define( 'WOOPS_VERSION', '6.1.2' ); 45 45 define( 'WOOPS_G_FONTS', true ); 46 46
Note: See TracChangeset
for help on using the changeset viewer.