When ever we search word or a phrase in magento it returns all the product contaning that word or phrase or some time it returns all product
example if we search earrings it returns us earrings as well as it return rings also so to fix this we follow the fix given below, hope it could help you also
You need to modify line 345 (Magento ver. 1.5.1.0) of the
app/code/core/Mage/CatalogSearch/Model/Mysql4/Fulltext.php
if ($like) {
$likeCond = ’(‘ . join(‘ OR ’, $like) . ’)';
}
and change “OR” with “AND”
Tags: Magento code
Update (Magento 1.6.x.x):
Filepath: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
Line: 356