How to add the who is online for the entire site?
Using Jamroom
Hi Douglas
It works. The stats block is now showing to visitors. I have used the code taken from ProJam the get thing to display properly.
For those interested, here is the final code:
<div class="block">
<div class="title">
<h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="67" default="stats"}</h2>
</div>
<div class="block_content">
<div class="item">
<div style="width:90%;display:table;margin:0 auto;">
{capture name="template" assign="stats_tpl"}
{literal}
{foreach $_stats as $title => $_stat}
<div style="display:table-row">
<div class="capital bold" style="display:table-cell">{$title}</div>
<div class="hilite" style="width:5%;display:table-cell;text-align:right;">{$_stat.count}</div>
</div>
{/foreach}
{/literal}
{/capture}
{jrCore_stats template=$stats_tpl}
</div>
</div>
</div>
</div>
By the way, have you found the fix for the "Whos Online" that doesn't show for logout users and visitors?
Thanks