|
You want to search where?
The sitewide search (plugin) or the internal search (catalog-view)
For the catalog view you must change the model in
/components/com_joodb/model/ctalog.php
change line 88 and 90
$where[] .= " (a.".$this->_joobase->ftitle." LIKE '%".$search."%' ". " OR a.".$this->_joobase->fcontent." LIKE '%".$search."%' ) ";
to
$where[] .= " (a.".$this->_joobase->fid." = '".$search."' ) ";
[Adeel 2009-11-06 23:24:30]:
I wants to search by ID how can i cahge it to do by s
Means it will only just search by ID not by name
|