Quote:
Originally Posted by lemonadesoda
Apologies for what might be a trivial question; I am a non-programmer, although happy to Notepad++ edit under directions.
How do I remove the "Statistics" from Forum Home, especially this: "Welcome to our newest member...". I want a cleaner look and feel and don't need this (mostly) irrelevant information for users. I, as admin, might be interested in the Stats, but I don't want the clutter for others.
Thanks in advance!
|
To remove "Welcome to our newest member..." find the following code at the FORUMHOME template and either comment it out or remove it.
HTML Code:
<p>{vb:rawphrase welcome_to_our_newest_member_x, {vb:link member, {vb:raw newuserinfo}}, {vb:raw newuserinfo.username}}</p>
Whereas to remove the whole stats block, at the same template, find the following code at the FORUMHOME template and either comment it out or remove it.
HTML Code:
<div id="wgo_stats" class="wgo_subblock">
<h3><img src="{vb:stylevar imgdir_misc}/forum_stats.png" alt="{vb:rawphrase x_statistics, {vb:raw vboptions.bbtitle}}" />{vb:rawphrase x_statistics, {vb:raw vboptions.bbtitle}}</h3>
<div>
<dl>
<dt>{vb:rawphrase threads}</dt>
<dd>{vb:raw totalthreads}</dd>
<dt>{vb:rawphrase posts}</dt>
<dd>{vb:raw totalposts}</dd>
<dt>{vb:rawphrase members}</dt>
<dd>{vb:raw numbermembers}</dd>
<vb:if condition="$show['activemembers']">
<dt>{vb:rawphrase active_members}</dt>
<dd>{vb:raw activemembers}</dd>
</vb:if>
</dl>
<p>{vb:rawphrase welcome_to_our_newest_member_x, {vb:link member, {vb:raw newuserinfo}}, {vb:raw newuserinfo.username}}</p>
{vb:raw template_hook.forumhome_wgo_stats}
</div>
</div>