How to add the who is online for the entire site?
Using Jamroom
The "Whos Online" doesn't show for me when logged out either, I'll get a ticket open for that.
If your trying to use the Stats block from the skins/jrElastic/profile_sidebar.tpl, it isn't going to work in non profile skin templates. You would need to use the jrCore_stats function instead for non profile templates, ie.:
{capture name="template" assign="stats_tpl"}
{literal}
{foreach $_stats as $title => $_stat}
<span class="normal">• {$title}: {$_stat.count}</span>
{/foreach}
{/literal}
{/capture}
{jrCore_stats template=$stats_tpl}
Hope this helps!