Posted by Peter
2014-10-13

Hello
where can i change what top menu links are showing at normal user and administartor, example hide the about tab for normal users, and only show this tab for administrators??
Posted by Tom
2014-10-20

You can find the code for the top menu in staff/include/tpl.body.header.inc.php. Use the following condition to excute code for admin only.
if ( !$sys->IsAdmin() ) {
// The code placed here will be
// executed for admin only.
}