1

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?

Re: where do i go to edit the menu?

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>';
Looking for a certain modification for your forum? Please take a look here before posting.