MyBB Community Forums

Full Version: Edit a link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So my website is tuxedogamers.com , the first screen you will see is the portal but also you will se the portal button at the top of my website.

I want to change that portal button to forum button so it redirects the users to the forum


pd. my forum main page is http://tuxedogamers.com/index.php
(2013-11-04, 12:22 AM)fliferen Wrote: [ -> ]So my website is tuxedogamers.com , the first screen you will see is the portal but also you will se the portal button at the top of my website.

I want to change that portal button to forum button so it redirects the users to the forum


pd. my forum main page is http://tuxedogamers.com/index.php

HEADER ---> header_welcomeblock_member

search

<a href="portal.php"><span>{$lang->toplinks_portal}</span></a>

and change to


<a href="{$mybb->settings['bburl']}"><span>FORUM</span></a>
(2013-11-04, 12:45 AM)dthiago Wrote: [ -> ]
(2013-11-04, 12:22 AM)fliferen Wrote: [ -> ]So my website is tuxedogamers.com , the first screen you will see is the portal but also you will se the portal button at the top of my website.

I want to change that portal button to forum button so it redirects the users to the forum


pd. my forum main page is http://tuxedogamers.com/index.php

HEADER ---> header_welcomeblock_member

search

<a href="portal.php"><span>{$lang->toplinks_portal}</span></a>

and change to


<a href="{$mybb->settings['bburl']}"><span>FORUM</span></a>

Thank you it changed the "portal" for "Forum" but how do I change the link because it keeps bringing me to the portal
See in General Configuration your forum url

like this http://bf4brasil.com.br

This

{$mybb->settings['bburl']}

=

your forum url

So if u change your href to {$mybb->settings['bburl']} like i said before
you can follow this guidance for adding / editing the top links of your MyBB forum