php - magento full text search not working on Live -
magento full text search not working
i following steps
full text search option enable system->configuration->catalogsearch
and
app/code/core/mage/catalogsearch/model/resources/fulltext.php
change
$likecond = '(' . join(' or ', $like) . ')';
to
$likecond = '(' . join(' and', $like) . ')';
but still not able search fulltext
word match.
you need change
$where .= ($where ? ' or ' : '') . $likecond;
to
$where .= ($where ? ' , ' : '') . $likecond;
Comments
Post a Comment