Log in

View Full Version : Potentially stupid question


kofoid
03-12-2006, 04:21 PM
Is there a way to turn signatures off on only one forum?

007
03-12-2006, 07:53 PM
Yes, in the postbit/legacy (whichever you are using) template, replace:

<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

with (replace XX with the forum ID you want to exclude)


<if condition="$post['signature'] AND $forum[forumid]!=X">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

Hope that helps.