MyBB Community Forums

Full Version: Remove Breadcrumbs On Index
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone!

I have quite possibly a simple question but I don't know where to look. I've searched through other threads but I guess the code has changed now that I'm using 1.8? I couldn't find the lines I was told to look for.

I'm looking to remove the breadcrumbs from my index page. I want to keep them on all other pages, just not the index.

What do I need to do to make that happen?

Thanks! Smile
simple method is to add below style property in the index template of the theme (before </head>)
<style>
  .navigation {display: none;}
</style>

or you can modify index.php file like this
Thanks! That did it.