MyBBThemes Community

Full Version: Change Portal Name?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need help editing my portal template. You know how there is a:
<Board Name> / Portal?
Well, I want to change to word "Portal" to Blog. Yet, when you click it, it still takes you to the portal. If anybody can help me with this, I'd very, very thankful. Thanks!
You mean up at the toplinks, or actually on the portal page?
I don't know, if is it good:

Go to ACP -> Templates -> Search portal template -> Open it -> Third line of template:
Code:
<title>{$mybb->settings['bbname']} /Portal</title>

You must edit it, like this:

Code:
<title>{$mybb->settings['bbname']} - Blog</title>

Save template.

P.S. Sorry, but the MyBB wrong interprate triangle parenthesis (I don't know, is it correct?) :/

P.S.2 Ooo, now it's correct :D
Go into the Admin CP => Languages => Manage => click GO

Scroll down to the portal.lang.php and click edit. The first option is nav_portal. Change that word from Portal to Blog. Scroll down and click Update language variables.

edit: The advice that Tuptus gave above is not the standard template. This is what is listed in the default portal template:

Code:
<title>{$mybb->settings['bbname']}</title>

If you want the name at the top of the browser along with your forum name, you can change it to the following:

Code:
<title>{$mybb->settings['bbname']} - Blog</title>

But I think I answered your main question already. :D
Judel, I modify first code to propably template form of ThemeMaker.
Don't assume what someone else has in their template. Your code confused me at first and could very well confuse someone else. Let's stick with what is in the default templates when providing help, OK? :P From the instructions given, it had nothing to do with the portal template anyway.

Though I don't understand the part about clicking it and it taking you to the portal anyway. What thememaker is referring to is a breadcrumb, which is why the language needs to be changed. But once in the portal, it isn't clickable. You might need to provide more detail if your question has not been answered, thememaker. ;)
Judel, I remember it ;) .
Thanks! Whew, I thought would never get it...
Reference URL's