Michael
Michael

Reputation: 499

Advanced search results view mode

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

Answers (1)

Oğuz Çelikdemir
Oğuz Çelikdemir

Reputation: 4980

add setListCollection('grid') in app\design\frontend\base\default\template\catalogsearch\advanced\result.phtml

docs

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

Related Questions