
i made a custom header and i want to move some links
like login and register into header div
but when i do that it's still appear even if i logged in
any suggestions?
Code: Select all
<TMPL_IF my_login>
[user details code goes here]
<TMPL_ELSE>
[register - login code goes here]
</TMPL_IF>
Code: Select all
</TMPL_IF>
--------------
<TMPL_IF my_login>
[code goes here]
</TMPL_IF>
----------------
<TMPL_IF my_login>
[code goes here]
</TMPL_IF>