MyBB Community Forums

Full Version: How to hide / remove navigation?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Take a look at the image.

I don't want to see the navigation at the index page from my forum. In the image arced with red.

How to remove this navigation from the index? But leave it over there for the subpages?

[Image: dont.jpg]
Hello there

open global.php
Find

$navbits[0]['name'] = $mybb->settings['bbname'];
	$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";

replace with

if(basename($_SERVER['PHP_SELF']) != "index.php")
{
	$navbits[0]['name'] = $mybb->settings['bbname'];
	$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";
}
zaher1988 Wrote:Hello there

open global.php
Find

$navbits[0]['name'] = $mybb->settings['bbname'];
	$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";

replace with

if(basename($_SERVER['PHP_SELF']) != "index.php")
{
	$navbits[0]['name'] = $mybb->settings['bbname'];
	$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";
}

Wow thank you! This is working perfect for me Big Grin
Thanks .. I really need this thing Smile