PDA

View Full Version : Remove WGO icons


Randomm
07-10-2011, 11:31 PM
How do I remove the icons on the Currently Active Users and Cheapy Gamer Statistics?

Jeff Ledger
07-10-2011, 11:46 PM
ACP/ styles manager/ Forum home template

Search for

<h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase currently_active_users}" />{vb:rawphrase currently_active_users}</h3>

Remove this

<img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase currently_active_users}" />

Search for

<h3 class="blocksubhead"><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>

remove this line

<img src="{vb:stylevar imgdir_misc}/forum_stats.png" alt="{vb:rawphrase x_statistics, {vb:raw vboptions.bbtitle}}" />

You should have it done.

Jeff

Randomm
07-10-2011, 11:57 PM
got it working
thanks

Jeff Ledger
07-11-2011, 12:00 AM
You are welcome

Jeff

Randomm
07-11-2011, 12:16 AM
another question
how do I remove the "What's Going On?" itself? the text I mean

Jeff Ledger
07-11-2011, 12:20 AM
in template FORUMHOME

search for

<h2 class="blockhead">{vb:rawphrase whats_going_on}</h2>

Remove it

Randomm
07-11-2011, 12:59 AM
Thanks again!
Another question
on forumbit and/or threadbit there is this row row

Title / Thread Starter Replies / Views Last Post By

how do I get rid of this?

Jeff Ledger
07-11-2011, 01:10 AM
in template Forumdisplay search for

<div class="threadlisthead table">
<div>
<span class="threadinfo">
<span class="threadtitle">
<a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_title}}" rel="nofollow">{vb:rawphrase title}{vb:raw sortarrow.title}</a> /
<a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_postusername}}" rel="nofollow">{vb:rawphrase thread_starter}{vb:raw sortarrow.postusername}</a>
</span>
</span>
<vb:if condition="$show['search_engine']">

<span class="threadstats td">{vb:rawphrase replies} {vb:raw sortarrow.replycount} / {vb:rawphrase views}</span>
<span class="threadlastpost td">{vb:rawphrase last_post_by}{vb:raw sortarrow.lastpost}</span>
<vb:else />

<span class="threadstats td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_replycount}}" rel="nofollow">{vb:rawphrase replies}{vb:raw sortarrow.replycount}</a> / <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_views}}" rel="nofollow">{vb:rawphrase views}{vb:raw sortarrow.views}</a></span>
<span class="threadlastpost td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_flastpost}}" rel="nofollow">{vb:rawphrase last_post_by}{vb:raw sortarrow.lastpost}</a></span>
<vb:if condition="$show['inlinemod']"><span class="threadimodimod td"></span></vb:if>
</vb:if>
</div>
</div>


Remove it

It should remove all of these included threadlist header bg.

Randomm
07-11-2011, 01:18 AM
whats threadlist header bg?
and there are two places where you can see
Title / Thread Starter Replies / Views Last Post By

will it remove it from both locations?

Jeff Ledger
07-11-2011, 01:30 AM
You can try it and see yourself right ?

Randomm
07-11-2011, 01:35 AM
yeah you're right and it did
thanks

mind if I ask you more questions?