Hi,
believe you need something like this:
{if $main eq "catalog" and $current_category.category eq ""}
STUFF FOR HOME PAGE HERE
{else}
STUFF FOR OTHER PAGES HERE
{/if}
put this on customer/home.tpl
For example this:
{if $main eq "catalog" and $current_category.category eq ""}
{else}
{include file="location.tpl"}
{/if}
removes the location bar from the home page.
I think this will work; try searching the forum for something like that if you want some more info on it, but I think that will get you in the right direction.
|