MyBB Community Forums

Full Version: How to change link of Home button
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Like title

How can i? When i click to "Home" , i want it to redirect to another page.
where do you have that Home button - at the top or at the bottom ? can we have your forum url ..
(2015-02-09, 04:21 PM).m. Wrote: [ -> ]where do you have that Home button - at the top or at the bottom ? can we have your forum url ..

http://ffy-gaming.url.ph/forums
admin panel >> templates (left side column menu) >> igame templates >> Header templates >> header

find code like below
<li id="nav-portal"><a href="{$mybb->settings['bburl']}/portal.php"><i style="font-size: 12px;" class="fa fa-home fa-fw"></i> Home</a></li>

you can replace {$mybb->settings['bburl']}/portal.php with any other link
(2015-02-09, 06:30 PM).m. Wrote: [ -> ]admin panel >> templates (left side column menu) >> igame templates >> Header templates >> header

find code like below

<li id="nav-portal"><a href="{$mybb->settings['bburl']}/portal.php"><i style="font-size: 12px;" class="fa fa-home fa-fw"></i> Home</a></li>

you can replace {$mybb->settings['bburl']}/portal.php with any other link

Thank you Smile