MyBB Community Forums

Full Version: How can you add
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can you add extra links to the home section under the tab Home in the Admin Section?
Pretty easy to do...
Go to admin/modules/home and open module_meta.php
Your best opening it with Wordpad or similar, as Notepad turns it into a big mess.
Anyway, find:
function home_meta()
{
Then you will see the links below it. Simply follow my example to add links. Increase the $sub_menu['--'] number everytime you add a link by 10. Example, if it was 40, I would make it 50.

	$sub_menu['50'] = array("id" => "google", "title" => "Google", "link" => "http://www.google.com");
Thanks for this Smile
No problem, glad I helped Wink