Quote:
Open up welcome.tpl and use an {if} statement to differentiate between logged in and not logged in customers:
{if $login eq ""}
Display non logged in text
{else}
Display logged in text
{/if}
You can of course use html in place of the text or whatever else you want in there.
|
Thanx for that, I'll give it a go this afternoon...