Topic: where do i go to edit the menu?
Where do I go to remove an item from the menu (indec, user list, rules, search, profile, log out)? And how do I go about doing it?
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 troubleshooting → where do i go to edit the menu?
Where do I go to remove an item from the menu (indec, user list, rules, search, profile, log out)? And how do I go about doing it?
They can all be found in include/functions.php
They're pretty easy to find if you just use the find function in any decent text editor. To remove them, I'd recommend that you comment them out by placing // in front of them. Ex:
If you want to remove the index link, change:
$links[] = '<li id="navindex"><a href="index.php">'.$lang_common['Index'].'</a>';
to
// $links[] = '<li id="navindex"><a href="index.php">'.$lang_common['Index'].'</a>';
PunBB Forums → PunBB 1.2 troubleshooting → where do i go to edit the menu?
Powered by PunBB, supported by Informer Technologies, Inc.