0

我想在我的 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出现在主页中......我应该如何写 参考 name="right"

有什么建议吗?

4

1 回答 1

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> 产品和用户波纹管标签以从不同的句柄中删除此块,例如

 <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

于 2013-08-27T13:31:55.243 回答