Re: Change how products in the product list display in home_main.tpl for one category
That's a bit more difficult as the search results are not grouped by specific category, so you'd have mixed results. For that purpose you would have to modify the one template for both purposes, to do something like:
{if $products[product].categoryid eq "X"}Show Category Specific Info{else}Show the default{/if}
|