Search code examples
phpxmlmagentomagento-1.9

How to call the Search bar from homepage to all other pages in Magento 1.9?


My Search bar is currently on my homepage(http://www.ashvinrx.com/magento/index.php/). block type="core/template" name="top.search" as="topSearch" template="catalogsearch/form.mini.phtml"/>

I want to make the search bar appear on my 'newproducts' page (http://www.ashvinrx.com/magento/index.php/newproducts).Please help.


Solution

  • You can try this code also in phtml file.

    <?php echo $this->getLayout()->createBlock('core/template')->setTemplate('catalogsearch/form.mini.phtml')->tohtml(); ?>