I want to have one mini-search box in the products page and one mini-search box in the home-page in my Magento 1.7.2.
These mini-search box are called from the local.xml (in my own template ofcourse)
like this below:
<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>
I cannot make the top.search_main to apear in the main page... How should I write the reference name="right" ?
Any suggestion ?