PDA

View Full Version : Welcome Message Modded


GDA
09-09-2008, 09:20 PM
Hi,

I have a sidebar which displays the welcome message to non register users but it also displays it to users who are signed in, is their anyway I could get the Welcome message to change to another message once a user is logged in?

Thanks

Lynne
09-09-2008, 09:25 PM
Sure you can. You can surround it with a condition like:

<if condition="$show['guest']">
Guest welcome message here
<else />
Message to all others
</if>

GDA
09-09-2008, 11:15 PM
Thanks!