Your skin (whichever it is) is taking care of displaying your stats to the site visitor. So look through your skin for the relevant smarty, css, html and php relating to stats.
In Nova skin config you have Show Stats which switches showing of stats on and off.
All stats registered by modules are available in the skin template in the $_stats variable, Nova reaches that using {foreach $_stats as $title => $_stat} so each stat is listed in a span with $title and $count.
In jrNova stats are output using a capture assign (from index.tpl):
{* SITE STATS *}
{if isset($_conf.jrNova_show_stats) && $_conf.jrNova_show_stats == 'on'}
<div class="row">
<div class="col12 last">
<div class="inner">
<div class="inner leader">
<span class="capital">{jrCore_lang skin=$_conf.jrCore_active_skin id="42" default="stats"}</span> -
{capture name="template" assign="stats_tpl"}
{literal}
{foreach $_stats as $title => $_stat}
<span class="media_title">• {$title}: {$_stat.count}</span>
{/foreach}
{/literal}
{/capture}
{jrCore_stats template=$stats_tpl}
</div>
</div>
</div>
</div>
{/if}
It is also used in profile_header.tpl to display the profile stats (the code smarty html and css are a little different)
Modules each register their stats with the core so the stat appears in the template..
For example, from jrPlaylist_init in include.php:
jrCore_register_module_feature('jrProfile', 'profile_stats', 'jrPlaylist', 'profile_jrPlaylist_item_count', 21);
That gets the stat into the skin so it can be displayed.
--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)
updated by @ultrajam: 05/10/14 12:04:22PM