PDA

View Full Version : anouncement type box above certain forums?


TBevilacqua
07-14-2007, 08:25 PM
Is there a mod that will allow me to have a block of text above a certain forum? For instance, i have a forum that when entered i want a block of texts that gives the user some information about the forum.

hope this makes sense..

Thanks,

-mike

Distance
07-14-2007, 09:27 PM
Why don't you just post an announcement for that forum?

Distance

Kirk Y
07-14-2007, 09:39 PM
Well I do it because users don't always read announcements -- this way it's right there staring them in the face.

Find in your forumdisplay template:
$navbarAdd below:
<if condition="$foruminfo[forumid] == 'X">
<table cellspacing="0">
<tr>
<td>This is only visible in Forum X.</td>
</tr>
</table><br />
</if>

Replace the 'X' with the ForumID of the Forum you'd like the message displayed in.

Dismounted
07-15-2007, 05:13 AM
Fixed a few errors in Kirk's code.
<if condition="$foruminfo['forumid'] == X">
<table cellspacing="0">
<tr>
<td>This is only visible in Forum X.</td>
</tr>
</table><br />
</if>

TBevilacqua
07-15-2007, 06:58 AM
Thanks Guys..