MyBB Community Forums

Full Version: " Home " button is missing in my theme.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My forum name is www.satfriends.net

" Home " button is missing in my theme. 

How can I set right the home button in front panel.

Also give me a solution for "THANKS " button. Any good plugin for thanks button is available.?
First your forum is not loading for me. Second, you can try this Thanks/Like plugin http://community.mybb.com/thread-169382.html
Edited : Your site loaded for me. You will need to edit your current theme's header template and will need to add the home link. For this go to ACP > Theme & Templates > Templates > Select Your Current Template> Header >Header and add your home link.

If you don't know how to do this than please reply here with the code of your Header>Header template ..... I will try to solve your problem Angel

Thanks
NomanProdhan Brother, 

I am not familiar with header templates. so i give the template set here. please correct it to show the HOME button.



<script type="text/javascript" src="jscripts/kingstat.js"></script> <div id="container">
<a name="top" id="top"></a>
<div id="header">
<div id="logo">
                            <div class="wrapper">
                                <a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>                  

<ul class="menu top_links">
{$menu_portal}
{$menu_search}
{$menu_memberlist}
{$menu_calendar}
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
</ul>
</div>
</div>
<div id="panel">
<div class="upper">
<div class="wrapper">
{$quicksearch}
{$welcomeblock}
<!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
<!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
</div>
</div>
<div id="content">
<div class="wrapper">
{$pm_notice}
 {$stat_box}
 {$kingstat}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
{$awaitingusers}     
<navigation>
{$news_ticker}
<br />
(2015-09-09, 12:04 PM)SENTHIL KUMAR Wrote: [ -> ]" Home " button is missing in my theme. 

Generally, your forum logo acts as a home button.
Hi
Please try to replace the header template code with below :


<script type="text/javascript" src="jscripts/kingstat.js"></script> <div id="container">
<a name="top" id="top"></a>
<div id="header">
<div id="logo">
                            <div class="wrapper">
                                <a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>                  

<ul class="menu top_links">
<li><a href="{$mybb->settings['bburl']}/index.php">Home</a></li>
{$menu_portal}
{$menu_search}
{$menu_memberlist}
{$menu_calendar}
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
</ul>
</div>
</div>
<div id="panel">
<div class="upper">
<div class="wrapper">
{$quicksearch}
{$welcomeblock}
<!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
<!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
</div>
</div>
<div id="content">
<div class="wrapper">
{$pm_notice}
 {$stat_box}
 {$kingstat}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
{$awaitingusers}     
<navigation>
{$news_ticker}
<br /> 


If its not work than please let me know. . . . Thanks
if you still like to have a Home button you can add the following line of code just above {$menu_portal}

<li><a href="{$mybb->settings['bburl']}/index.php" title="">Home</a></li>