Delete Nav Tree / breadcrumbs from homepage only

Started by brettuk, December 22, 2015, 06:21:03 AM

Previous topic - Next topic

brettuk

Hi,

I am looking to remove the breadcrumb/location bar from my forum.. had my luck so far.

You can view my forum here..
The SEO Forums

I have customsied a lot of the forum, I just need to remvoe the location bar from the homepage only - however I still want it to appear on other posts/categories.

All help is greatly appreciated! :)

All Colours Sam

Open your theme's index.template.php and fine:

// If linktree is empty, just return - also allow an override.

replace with:

if (count($context['linktree']) <= 1)
      return;

   // If linktree is empty, just return - also allow an override.


Not really tested, this just assumes the boardindex/portalhome its the first thing in the linktree array
Oh, wouldn't it be great if I *was* crazy? ...then the world would be okay
Suki

brettuk

Quote from: Suki on December 22, 2015, 12:02:46 PM
Open your theme's index.template.php and fine:

// If linktree is empty, just return - also allow an override.

replace with:

if (count($context['linktree']) <= 1)
      return;

   // If linktree is empty, just return - also allow an override.


Not really tested, this just assumes the boardindex/portalhome its the first thing in the linktree array

You absolute god, it works a treat thanks!

Advertisement: