terrid25
terrid25

Reputation: 1946

Moving advanced search - Magento

I am looking to move the advanced search, to the left-hand sidebar.

Is this possible to do?

Upvotes: 0

Views: 1333

Answers (1)

Andrey Korolyov
Andrey Korolyov

Reputation: 996

It is very easy todo.

just change local.xml in your theme.

<default>
        <reference name="left">
            <block type="catalogsearch/advanced_form" name="catalogsearch_advanced_form" template="catalogsearch/advanced/form.phtml"/>
            <block type="core/html_calendar" name="html_calendar" as="html_calendar" template="page/js/calendar.phtml"/>
        </reference>
</default>

Then change CSS to fit this form into left sidebar.

Upvotes: 3

Related Questions