Hello,
That setting is for the profile stats... it wasn't ever really setup for the home page stats so isn't really a bug or something that needs to be fixed.
If you want to hide home page stats, you'll have to modify the side.tpl and add the if statement Nate posted around the code for the stats.
Change this:
{* STATS *}
<div class="title">{jrCore_lang skin=$_conf.jrCore_active_skin id="36" default="stats"}</div>
<div class="body_3 mb10">
<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>
to this:
{* STATS *}
{if isset($_conf.jrFlashback_show_stats) && $_conf.jrFlashback_show_stats == 'on'}
<div class="title">{jrCore_lang skin=$_conf.jrCore_active_skin id="36" default="stats"}</div>
<div class="body_3 mb10">
<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>
{/if}
Hope this helps!
--
Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos