PDA

View Full Version : removing statistics


sivaganeshk
01-05-2011, 04:19 PM
I want to remove the Forum statistics in my vb 4.1

http://img525.imageshack.us/img525/5789/capturewah.png

I followed this thread https://vborg.vbsupport.ru/showthread.php?p=2076516


<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>

But my footer link containing the vb trademark was also removed. I love to show I use vb <3

Pls help me how to remove only the statistics

Lynne
01-05-2011, 04:22 PM
Removing what you posted above will not remove the trademark from the footer template (I'm sure it's still in the source code, even if it isn't showing because of bad html). I do believe your removed too many </div> tags though. So, double check to make sure everything is 'matched' when removing code. Do it a couple lines at a time, if needed.

sivaganeshk
01-06-2011, 10:18 AM
now it worked...