PDA

View Full Version : Removing 3 Things From Above Rules In Footer


ams3521
02-21-2008, 09:47 PM
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 :p) 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 1203638974 at 1203638974 ---------------

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/suggestions-announcements/

thanks

Boofo
02-21-2008, 11:48 PM
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 :p) 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/suggestions-announcements/

thanks

Look for this in the forumdisplay.php and remove it:

<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">&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>
</tr>
</table>

transparent
06-30-2008, 06:31 AM
Thank you! This was quite helpful.