PDA

View Full Version : Is it possible to get rif of New Post, No Post images..


RobbieZ
07-25-2008, 05:28 PM
On the index page of your forum at the bottom left-hand corner.. there are 2 icons.

https://vborg.vbsupport.ru/external/2008/07/5.gif
https://vborg.vbsupport.ru/external/2008/07/6.gif

The third one is the locked symbol, but i know how to remove that 1..

Is it possible to remove or hide these on the index page..

Shelley_c
07-25-2008, 05:47 PM
I think you'll need to go into your forumhome template and remove the following code. Always remember to backup regardless because you may want to insert the code back in at a later date.

<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
<td>
<table cellpadding="2" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
</tr>
<if condition="$vboptions['showlocks']">
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
</tr>
</if>
</table>
</td>