MyBB Community Forums

Full Version: fix my header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

On the website here: http://thestonedcowgaming.com/ I want to have the main page to be the portal page, so I finally found out how that worked, but now I got an other problem. When I press the Forums button ([urlhttp://i.imgur.com/zK8uCb1.png]image[/img] it  goes the thestonedcowgaming.com, how can I make this like this that when I press the forums button it'll redirect to thestonedcowgaming.com/index.php?

Thanks for your time, sadly my explanation skills suck.

Kevin
admin panel >> Templates & Style >> templates >> Flatty Templates >> Header Templates

>> header_welcomeblock_guest
<li><a href="{$mybb->settings['homeurl']}"><i class="fa fa-comments"></i> Forums</a></li>
change to
<li><a href="{$mybb->settings['homeurl']}/index.php"><i class="fa fa-comments"></i> Forums</a></li>

>> header_welcomeblock_member
<li><a href="{$mybb->settings['bburl']}"><i class="fa fa-comments"></i> Forums</a></li>
change to
<li><a href="{$mybb->settings['bburl']}/index.php"><i class="fa fa-comments"></i> Forums</a></li>

see also documentation related to templates
Thank you, it worked. I really appreciate the fast support Wink