Quote:
Originally Posted by ams3521
Hello i was looking at removing
Forum Contains New Posts
Forum Contains No New Posts
Forum is Closed for Posting
from above the forum rules in my footer (as the title says  ) Can anyone tell me where i can remove them from? They show in the forum home and also in forums but not on threads. Can anyone tell me how to remove them and if it will cause any bother? I have searcjhed the forum but to no avail. thanks
--------------- Added 21 Feb 2008 at 18:09 ---------------
I have managed to take it out the forumhome with good success but sadly its still showing when i click a forum. ive tried taking what i thought it was out the FORUMDISPLAY but that doesnt seem to be working. Anyone know where i should be looking? An exampe of it is here-
http://www.thedailypunt.com/forum/su...announcements/
thanks
|
Look for this in the forumdisplay.php and remove it:
HTML Code:
<else />
<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"> $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"> $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"> $vbphrase[forum_is_closed_for_posting]</td>
</tr>
</if>
</table>
</td>
</tr>
</table>