Hello friends,\
\
I want to insert a Logout link to the welcome_area but it will be only shown to logged-in users, not visitors. \
\
After you click on account manager you see links on the left cloumn. I want to make that left column visible to only logged-in users, not visitors.\
\
What should be the code? \
I hope these changes go into the release because these are very important from usability point of view. (http://www.useit.com)
I want to make that left column visible to only logged-in users, not visitors. What should be the code? I hope these changes go into the release because these are very important from usability point of view.
This is also easy. The template AccountMgr.html is the main layout for all the account manager functions. So to do what you want and make each template different look for the account manager including the login you will have to do this:
1)- Copy the links section from the template AccountMgr.html to all the account manager templates and customize these templates for that.
2)- Clear the account manager navigation links or remove anything you do not want to display to none logged in users in the file AccountMgr.html .
You didn't get my point. I'm asking conditional display of some HTML code:\
\
first\
IF user is logged-in THEN show log-out link ELSE do not show anything.\
\
second\
IF user is NOT logged-in THEN do not show left column in the account manager login page.\
\
\
My original reply has been deleted???
Currently, account manager login form is called from AccountMgr.html. If I can make the login form as a complete standalone template I can remove the left menu. and after log-in it should redirect to account manager overview page, of course. Can you tell me how can do this?