MyBB Community Forums

Full Version: Rearrange Admin Navigation/Tabs
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I couldn't seem to find any threads on this, so sorry if there is already one.

I am wanting to rearrange the navigation tabs in MyBB Admin Panel. How would I go by doing this?

Thanks.
warning Core File EDITS needed


open admincp/modules


each of the folders here is each tab

inside each one is a module_meta file

open the module_meta.php file in text editor such as Notepad++

then find the

Quote:foldername_meta function

$page->add_menu_item($lang->templates_and_style, "style", "index.php?module=style", 40, $sub_menu);

foldername is also mostly the tab such as style_meta as shown for the styles tab "fourth in the sequence"
and change all of them to whatever order you want eg 10 comes first then 20 etc

therefore you can rearrange by amending the files Big Grin
Awesome, thank you so much! Big Grin