Magento在产品页面和main.page中创建了多个“迷你搜索框”

时间:2013-08-27 11:56:25

标签: php magento search

我想在产品页面中使用一个小型搜索框,在家中使用迷你搜索框我的Magento 1.7.2中的页面

这些迷你搜索框是从 local.xml (在我自己的模板中)调用的

如下所示:

    <reference name="left">
             <block type="core/template" name="top.search" template="catalogsearch/form.mini.phtml" after="sibling.blockName"/>
    </reference>

   <reference name="right">
             <block type="core/template" name="top.search_main" template="catalogsearch/form.mini_main.phtml" after="sibling.blockName"/>
   </reference>

我无法在主页面中将 top.search_main 设为apear ... 我该如何写引用名=“右”

有什么建议吗?

1 个答案:

答案 0 :(得分:2)

嗨使用这可能会帮助你去catalogsearch.xml并用这个替换

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

<reference name="right"> <block type="core/template" name="top.search" as="topSearch" template="catalogsearch/form.mini.phtml"/> </reference> 对于产品和用户bellow标签,从

等不同的句柄中删除此块
 <review_product_list> <remove name="top.search" /> </review_product_list> 

对于主页我需要详细说明您如何调用主页,但请尝试使用主页

{{block type="core/template" name="home.search" as="homeSearch" template="catalogsearch/form.mini.phtml"}}

将其放在管理员的主页内容部分,然后根据页面

更改搜索的CSS