当我的客户在我的搜索框中搜索(使用form.mini.phtml)时,结果将不会显示在我的信息中心(Magento 1.7)中。
这是我的代码:
<?php
$catalogSearchHelper = $this->helper('catalogsearch');
?>
<div class="search-form">
<form id="search_mini_form" action="<?php echo $this->getUrl('search/result') ?>" method="get">
<input id="search" type="text" name="query" value="" maxlength="<?php echo $catalogSearchHelper->getMaxQueryLength();?>" />
<button><?php echo $this->__('Search') ?></button>
</form>
<script type="text/javascript">
var searchForm = new Varien.searchForm('search_mini_form', 'search', '<?php echo $this->__('Search Products and Pages...') ?>');
</script>
</div>
<a href="<?php echo $this->getUrl('catalogsearch/advanced'); ?>"><i><?php echo $this->__('Advanced Search'); ?></i></a>
结果不会显示在我的信息中心和“目录”下的搜索字词菜单中。
此保存操作应该在哪里进行?
如果我在目录下手动添加搜索字词 - &gt;搜索字词,它会显示在“最新5个搜索字词”中。
答案 0 :(得分:0)
检查
下是否启用了热门搜索字词的设置/ admin / system_config / edit / section / catalog - &gt;搜索引擎优化 并刷新你的缓存。