MyBB Community Forums

Full Version: Board Statistics.....
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a plugin to hide Board Statistics???
(2012-05-22, 01:03 AM)mallard Wrote: [ -> ]Is there a plugin to hide Board Statistics???

Go to your templates > Index Page Templates > index >

Remove the following line from the code:

{$boardstats}

Save it and done. I think atleast, no need for a plugin.
I just want to hide the "who has been online today" section..
If you mean the who's online part? Not sure though anymore since you were talking about the whole boardstats a moment ago. So maybe a link/image would be useful.

But if you mean the whos online currently thing

Just edit the index_boardstats template:

Remove:

{$whosonline}

But like i said im not sure what you mean right now. Since by default there is no [who has been online today.]
My forum url is http://www.dedoutdoors.com. The section is at the bottom under the "who's Online"...I just want to disable the "Who's been online today" section.
Can you post the code from:

index_boardstats template

Please.

Also check your plugins look for one called: Show online today
If you have that installed deactivate it /uninstall it.
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr>
<td class="thead">
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" title="[-]" /></div>
<div><strong>{$lang->boardstats}</strong></div>
</td>
</tr>
</thead>
<tbody style="{$collapsed['boardstats_e']}" id="boardstats_e">
{$whosonline}
{$online_today}
{$birthdays}
{$forumstats}
<tr>
<td class="tfoot" style="text-align: right">
<span class="smalltext">
{$logoutlink}
<a href="misc.php?action=markread">{$lang->markread}</a> |
<a href="showteam.php">{$lang->forumteam}</a> |
<a href="stats.php">{$lang->forumstats}</a>
</span>
</td>
</tr>
</tbody>
</table>
<br />
Try to remove this:

{$online_today}

Also since i think this is a plugin try to search for the plugin. And if you find it deactivate it.
That's it!!!! Fixed..... I appreciate that!!