PDA

View Full Version : Is there a way to make sigs non-viewable by forum?


CraftyMommy.com
07-20-2008, 01:18 AM
Is it possible to limit signature viewing by forum?

Dismounted
07-20-2008, 05:35 AM
You can edit the conditional for the signature in postbit(_legacy). By default, it is (off the top of my head):
<if condition="$show['signature']">
Change it to (replace X with forum ID to not display in):
<if condition="$show['signature'] AND $forum['forumid'] != X">
For multiple forums:
<if condition="$show['signature'] AND !in_array($forum['forumid'], array(X, Y, Z))">

CraftyMommy.com
05-20-2009, 03:11 AM
Thank you.