Re: Different head.tpl on home / welcome page?
Answering my own question:
In home.tpl
<div id="header">
{if $main eq "catalog" and $current_category.category eq ""}
{include file="customer/head-welcome.tpl"}
{else}
{include file="customer/head.tpl"}
{/if}
</div>
|