Magento全文搜索无效
我执行以下步骤
system->configuration->catalogsearch
和
app/code/core/Mage/CatalogSearch/Model/resources/Fulltext.php
更改
$likeCond = '(' . join(' OR ', $like) . ')';
到
$likeCond = '(' . join(' AND', $like) . ')';
但我仍然无法完全匹配fulltext
字。
答案 0 :(得分:2)
您还需要更改
$where .= ($where ? ' OR ' : '') . $likeCond;
到
$where .= ($where ? ' AND ' : '') . $likeCond;