MyBB Community Forums

Full Version: How to change something in portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well, My portal works, But i made him my Index.php and now in the Nav-Bar there is not Forum enter, So can someone help me make a Nav-Bar with Forum enter?

If you didnt got it so here is a screenshot:
Admin CP --> Templates --> Modify / Delete --> *Expand your Template set* --> header

Find:
<li><a href="$settings[bburl]/search.php">
Add the following code before the above code:
<li><a href="$settings[bburl]/">Portal</a></li><li><a href="$settings[bburl]/[b]forum.php[/b]">Forum Enter</a></li>
Thanks Dennis Smile
Nevermind solved
I did what Denis said but i have a little problem.When i click Forum(Portal Forum Enter) i still stands even when i am on the forum index.Can it automaticalybe changed to Portal so it takes you back to portal?
heloo there,

a simple way, is to add the link to the actual page instead of the header.
so in index page you put the link to the portal
and in the portal page you put the link for the index.
the same code can be used, but dont include it in the header.

Many regards
I understand, but do you know where exactly should i add the code...I don't want to mess something up.
alright

well the original code posted by dennis has 2 links, 1 for the portal and one for the index. it's not 1 whole link called portal forum enter, it's one with portal and the sec forum enter

now let's make it the way u want, by having 1 link in index and one in portal

in Admin CP > templates > modify / Delete > Index template > index

find this code
$header

then just below it add

<div align="right">
 <a href="$settings[bburl]/portal.php">Portal</a>
</div>

now let's add it to the portal page.

Admin CP > templates > modify / Delete > portal template >portal

find this code


$header

and just below it add

<div align="right">
 <a href="$settings[bburl]/forum.php">Forums</a>
</div>


many regards