I would like the menu link (using menu link module) to only show when logged in as admin, hidden when signed in as registed, menu_links_event.php is where Im looking at the moment Thanks
$user = identity::active_user(); if ($user->admin) { the original code goes here. }
Dave _____________________________________________ Blog & G2 || floridave - Gallery Team
Thanks Dave did the trick
Posts: 27300
$user = identity::active_user(); if ($user->admin) { the original code goes here. }
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 3
Thanks Dave did the trick