Using the following Javascript (placed in Settings > Global JavaScript) you can hide selected menu items from logged in users:
<script type="text/javascript">
if (document.getElementById('idLoggedName')) {
var publicLinks = new Array();
publicLinks[0] = "idMainMenuItem435606";
publicLinks[1] = "idMainMenuItem435618";
publicLinks[2] = "idMainMenuItem435619";
publicLinks[3] = "idMainMenuItem435356";
var TotalLinks = publicLinks.length-1;
for (LinkCount=0;LinkCount<=TotalLinks;LinkCount++) {
var menuItem = document.getElementById(publicLinks[LinkCount]);
if (menuItem){
menuItem.style.display = 'none';
}
}
}
</script>
To use it, simply change publicLinks[0] = "<menu-item-id-name>"; to include the ID of the menu item (you can find the id by viewing the page source of using the FireBug addon for Firefox). Add a new line for each additional menu item and increase teh number inside of the square brackets.
Poetic Apricot (Matthieu)
http://twitter.com/PoeticApricot
Need help? Give me a call! 1-877-493-6090
Customization help isn't a service we provide; I will do my best to help you in the forums as time permits however I recommend consulting our partners