Contributions

Features (Category Index)
Search: 

Instant Search (Google Style)

Allows Placement of a Search Box which works in the same manor of googles instant search box, where criteria are instantly searched and results displayed in a pretty drop down div.

No Location exampes are given and placement of the searchbar is down to you.

Expand All / Collapse All

instant Search Bug - search returns deactivated products 2 Mar 2012

in the instant search the returned results will include products which have been set inactive in the catalog admin area.

in older versions the facilaty to turn a products status off may not have existed so ive only included this as a information file not a complete package.

this bug is very easy to fix - see below



in searches.php replace


$sqlquery = "SELECT distinct(p.products_id),
pd.products_name,
p.products_price,
p.products_tax_class_id
FROM " . TABLE_PRODUCTS_DESCRIPTION . " pd,
" . TABLE_PRODUCTS ." p
WHERE" . $like_statement . " AND
pd.products_id = p.products_id";


with

$sqlquery = "SELECT distinct(p.products_id),
pd.products_name,
p.products_price,
p.products_tax_class_id
FROM " . TABLE_PRODUCTS_DESCRIPTION . " pd,
" . TABLE_PRODUCTS ." p
WHERE" . $like_statement . " AND
pd.products_id = p.products_id AND p.products_status =1";

Just another small update 21 Sep 2011
GoogleStyleSearchV3.3 16 Sep 2011
GoogleStyleSearchV3.2 for osc 2.2 with utf-8 26 Aug 2011
Instant Search (Google Style) V3.1 30 Jun 2011
Version 3 30 Apr 2011
Instant Search (Google Style) V2 29 Apr 2011
Instant Search (Google Style) 1.0.1 12 Apr 2011
Instant Search (Google Style) 12 Apr 2011

Note: Contributions are used at own risk.