Reputation: 499
Does anyone know how to change the view mode of the advanced search results in Magento? Standard is list mode, i prefer grid mode though.
Upvotes: 1
Views: 1199
Reputation: 4980
add setListCollection('grid')
in app\design\frontend\base\default\template\catalogsearch\advanced\result.phtml
or replace
<action method="setColumnCount"><count>4</count></action>
with ( comment out ) in catalogsearch.xml from layout folder
<action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
<action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
<action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
<action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
<action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
Upvotes: 1