Please forgive the broad nature of my question. Is it possible to assign logged in/logged out switches to certain elements in themes/classic/template.html? If so, what are they..?
Sincerely and thank you very much in advance.
Joe Belmaati
Copenhagen Denmark
Yes it is possible, but it's not done in template.html. Depending on what you are trying to "switch", it is probably in themes/yourtheme/theme.php.
Do something like this in the code:
if (USER_ID) {
//the code that you only want to display to logged in users goes here
} else {
//the code that logged-out users should see goes here.
}
Thanks a bunch, I'll give it a whirl! It is some links that I want to wrap the switches around. I'll move them into theme.php