Hi
I have added a logout link to my page
<cms:if k_logged_in>
Logout <a href="<cms:show k_logout_link />"><cms:show k_user_title /></a>
<cms:else />
<a href="<cms:show k_login_link />">Login</a>
</cms:if>
However, when the user clicks the logout link, it takes them to a login page
I would like the user to be redirected to the website's home page - index.html
Is there a way to do this?
Thanks in advance
I have added a logout link to my page
<cms:if k_logged_in>
Logout <a href="<cms:show k_logout_link />"><cms:show k_user_title /></a>
<cms:else />
<a href="<cms:show k_login_link />">Login</a>
</cms:if>
However, when the user clicks the logout link, it takes them to a login page
I would like the user to be redirected to the website's home page - index.html
Is there a way to do this?
Thanks in advance