MyBB Community Forums

Full Version: How to Change Tab Names on Profiles?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was wondering if anyone knew how I couldĀ change what the tabs on a member's profile says.
Right now it's just showing the forum's urlĀ [Image: JsESksr.png]

But I would like to have it look like this (from another mybb forums)
[Image: jZVxyNp.png]

Thanks.
admin panel >> Templates & Style >> templates >> [your theme templates] >> Member Templates >> member_profile

find code similar to below (near the top)
<title>{$mybb->settings['bbname']} - {$lang->profile}</title>
change like below & save the template
<title>{$lang->profile} - {$mybb->settings['bbname']}</title>
(2016-02-15, 05:16 PM).m. Wrote: [ -> ]admin panel >> Templates & Style >> templates >> [your theme templates] >> Member Templates >> member_profile

find code similar to below (near the top)
<title>{$mybb->settings['bbname']} - {$lang->profile}</title>
change like below & save the template
<title>{$lang->profile} - {$mybb->settings['bbname']}</title>

Ah, so that's where! But I forgot to mention one thing, oops. I have an SEO plugin so it's a bit different and I'm not sure how to change it.. sorry and thanks.
[Image: wGGWmWz.png]
you can add the second code after <head> in the member_profile template
Thank you very much!