如何编目搜索只显示在主页magento

时间:2014-11-07 03:40:30

标签: php magento

我正在研究magento,我有一个问题:如何编目搜索只显示在主页上。我找到了这个

<reference name="header">
   <block type="core/template" name="top.search" as="topSearch" 
          template="catalogsearch/form.mini.phtml"/>
</reference>

如何仅将catalogsearch映射到主页。 感谢

1 个答案:

答案 0 :(得分:0)

在这里我假设您的主页将是cms索引页面作为默认值,如果是,那么您可以按照以下xml标签添加目录搜索区域以仅在主页上显示

您可以将其添加到local.xml

<cms_index_index>    
      <reference name="header">
            <block type="core/template" name="top.search" as="topSearch"   template="catalogsearch/form.mini.phtml"/>
      </reference>
</cms_index_index>

并将其从catalogsearch.xml

中删除
 <default>
        <reference name="header">
            <block type="core/template" name="top.search" as="topSearch" template="catalogsearch/form.mini.phtml"/>
        </reference>
 </default>

希望这对您有所帮助。