MyBB Community Forums

Full Version: Board Statistics Icon
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
does anyone know if there is a plug in already?
If there is can you direct me to it and if not how would we be able to create icons like below.

[Image: boardstats.png]
They just added an icon to the template i believe.
where would i go to add the icon in the template, and what will i put?
thanks
Templates & Style > Templates > Index Page Templates > index_whosonline
Sample Code:
<tr>
<td colspan="6" class="tcat"><span class="smalltext"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</span></td>
</tr>
<tr>
<td class="trow1 smalltext" align="center" width="1"><img src="{$theme['imgdir']}/online.png" alt="" /></td>
<td colspan="6" class="trow1"><span class="smalltext">{$lang->online_note}<br />{$onlinemembers}</span></td>
</tr>

Templates & Style > Templates > Index Page Templates > index_stats
Sample Code:
<tr>
<td colspan="6" class="tcat"><span class="smalltext"><strong>{$lang->boardstats}</strong></span></td>
</tr>
<tr>
<td class="trow1 smalltext" align="center" width="1"><img src="{$theme['imgdir']}/stats.png" alt="{$lang->boardstats}" /></td>
<td colspan="6" class="trow1"><span class="smalltext">
{$lang->stats_posts_threads}<br />
{$lang->stats_numusers}<br />
{$lang->stats_newestuser}<br />
{$lang->stats_mostonline}
</span>
</td>
</tr>
hey if this works id be so happy ..
-------------------------

is it possible to be able to make a plug-in for this Pars for mybb members?