skylinegtr
11 years agoMentor
Sign In and Register not to show after logging in
Hi,
How do I make the Sign In and Register link not to display after a user sign in? As you can see the image below. I don't want the Sign In and Register to show after logging in, but have the log out to display instead. Thanks!
Sign in to react to this post
Hi skylinegtr
You can use the user context object
<#if user.registered> <#-- Code displaying the log out button --> <#else> <#-- Code displaying the register/sign in buttons --> </#if>
Hope that helps,