MyBB Community Forums
How to Change Tab Names on Profiles? - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html)
+--- Forum: General Support (https://community.mybb.com/forum-176.html)
+--- Thread: How to Change Tab Names on Profiles? (/thread-189033.html)



How to Change Tab Names on Profiles? - FoxKF - 2016-02-15

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.


RE: How to Change Tab Names on Profiles? - .m. - 2016-02-15

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>



RE: How to Change Tab Names on Profiles? - FoxKF - 2016-02-15

(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]


RE: How to Change Tab Names on Profiles? - .m. - 2016-02-15

you can add the second code after <head> in the member_profile template


RE: How to Change Tab Names on Profiles? - FoxKF - 2016-02-15

Thank you very much!