how can i get rid of the Login link in {MAIN_MENU} navigation...
i tried deleting it from theme.php but it gave me an error when trying to login... it was looking for the Login link in theme.php but was not found due to commenting it out...
thanks
you mustn't delete the comments surrounding the actual html link (is needed for theme.php to actually find it's way round).
To remove the login link, edit /themes/yourtheme/theme.php and find<!-- BEGIN login -->
<a href="{LOGIN_TGT}">{LOGIN_LNK}</a>
<!-- END login -->
and replace it with<!-- BEGIN login -->
<!--<a href="{LOGIN_TGT}">{LOGIN_LNK}</a>-->
<!-- END login -->
You can even replace it with<!-- BEGIN login -->
<!-- END login -->
, but you can not just delete it!
GauGau
Thank you... worked perfectly.