Magento的搜索给人很不准确的感觉,有时候很多词语在产品名字里没有,但是还是被搜索出来的,匹配度相当不准确,是因为添加这个产品所有相关的内容都会去搜索有没有词语,只要一个地方有这些信息就会被搜索出来。
如果要求常用搜索的关键词都在产品名字中包含,那么,可以借鉴magneto高级搜索里面的按照name搜索
步骤如下:
找到app/design/frontend/default/default/template/catalogsearch/form.mini.phtml
代码如下
<form id="search_mini_form" action="<?php echo Mage::getBaseUrl(‘web’) ?>catalogsearch/advanced/result/" method="get">
<div class="form-search">
<label for="search"><?php echo $this->__(‘Search:’) ?></label>
<input id="search" type="text" name="name" value="<?php echo $this->helper(‘catalogsearch’)->getEscapedQueryText() ?>" class="input-text" />
<button type="submit" title="<?php echo $this->__(‘Search’) ?>" class="button"><span></span></button>
<div id="search_autocomplete" class="search-autocomplete"></div>
<script type="text/javascript">
//<![CDATA[
var searchForm = new Varien.searchForm('search_mini_form', 'search', '<?php echo $this->__('Search entire store here...') ?>');
searchForm.initAutocomplete('<?php echo $this->helper('catalogsearch')->getSuggestUrl() ?>', 'search_autocomplete');
//]]>
</script>
</div>
</form>
替换成上面的代码(做修改前一定要备份源文件)
测试一下:结果就是高级搜索里面的按照产品的名字搜索结果!
(责任编辑:最模板) |