MyBB Community Forums

Full Version: Change page title
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want a different Page Title to the name displayed in the Breadcrumbs, would it be possible to find out where the Page Title is set so I can achieve this.

Thanks in advance
Admin CP > Configuration > Configuration > Forum Name
The thing is that wont let me have a different Site Name in the breadcrumbs.
Admin CP > Templates & Style > Templates > THEME NAME > Navigation Templates

Try editing one of them to your liking. I can't find out which one to edit right now, but I'm pretty sure it's just the "nav" template.
OK thanks Smile

Is there any way of doing remove_breadcrumb? i know about the add-breadcrumb wondering if there was a reserve.
To be honest, I'm not sure as I've never worked that in-depth with the navbits/navigation templates. I doubt that there is, though, but you could always try it and see what happens, as it shouldn't mess up your forums at all.
Revert the template changes and open the file global.php and find:
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
Replace with:
$navbits[0]['name'] = "Whatever you want to be shown";
(2009-04-05, 09:55 PM)Michael83 Wrote: [ -> ]Revert the template changes and open the file global.php and find:
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
Replace with:
$navbits[0]['name'] = "Whatever you want to be shown";
Mm, that works tooToungue