MyBB Community Forums

Full Version: Board Stats and Whos online are missing?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, my forum http://www.theempirecode.com

Doesn't Display Board Stats or whos online.

I am pretty experienced in html, but I can just not see what the issue is here.

Index_BoardStats
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">

<thead>

<tr>

<td class="thead" colspan="3">

Index_Stats
[code]<tr>

<td class="trow1" valign="top" align="left"><span 
class="smalltext">{$lang->online_note}<br 
/>{$onlinemembers}</span></td>

<td class="trow1" valign="middle" align="left"><span class="smalltext">

{$lang->stats_posts_threads}<br />

{$lang->stats_numusers}<br />

{$lang->stats_newestuser}<br />

{$lang->stats_mostonline}

</span></td>

</tr>


<div class="expcolimage"><img 
src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" 
id="boardstats_img" class="expander" alt="[-]" title="[-]" 
/></div>

<div><strong>Forum Info</strong></div>

</td>

</tr>

</thead>

<tbody style="{$collapsed['boardstats_e']}" id="boardstats_e">

<tr>

<td class="tcat" width="65%"><span 
class="smalltext"><strong>Who's Online</strong> [<a 
href="online.php">Complete List</a>]</td>

<td class="tcat" width="35%"><span 
class="smalltext"><strong>Board Statistics</strong> 
[<a href="stats.php">Full Statistics</a>]</td>

</tr>

{$forumstats}

{$birthdays}

</tbody>

</table>

<br />

Index_Birthdays
<td class="trow1" valign="top"><div class="stats_icon"><img src="{$theme['imgdir']}/wol_icon.gif" alt="{$lang->whos_online}" border="0" /></div><div class="stats_content smalltext">{$lang->online_note}<br />{$onlinemembers}</div></td>

Index_whoisonline
<td class="trow1" valign="top"><div class="stats_icon"><img src="{$theme['imgdir']}/wol_icon.gif" alt="{$lang->whos_online}" border="0" /></div><div class="stats_content smalltext">{$lang->online_note}<br />{$onlinemembers}</div></td>

Is anything wrong with the ways these look?
They look okay to me. Does your index template have the {$boardstats} variable present?
{$forums}
{$boardstats}
{$footer}
</body>
</html>

This is what it looks like
(2013-02-03, 08:43 PM)pandaa Wrote: [ -> ]They look okay to me. Does your index template have the {$boardstats} variable present?

Its not the actual boardstats that is missing, its the information like the Who is online, and the "Our users have" and "Our Newest member is" that is not there.