Log in

View Full Version : signature disabled in a specific forum


as7aab
05-05-2007, 08:29 PM
Hi, my question is how can i disable signatures in a specific forum?
is there an option to do so or there a mod that can help me do that?

thank you. https://vborg.vbsupport.ru/external/2011/12/7.gif

donxmas
08-23-2007, 01:19 AM
I would be interested in knowing this as well.

(Still searching the archives, though.)

Kirk Y
08-23-2007, 02:06 AM
Find in your respective postbit template:
<if condition="$post['signature']">

Replace with:
<if condition="$post['signature'] AND $GLOBALS[forumid] != X">

Replace X with the Forum ID of the Forum you don't want Signatures displayed in.

kawzaki
09-24-2007, 04:31 AM
Thx,

since am not acquainted with vBulletin, I was looking for how to get the FORUMID, and here you brought it: $GLOBALS[forumid].

thanks again.

wimzik
09-25-2007, 06:25 PM
Thanks!
How do I do it for more than just one forum?

Kirk Y
09-26-2007, 12:05 AM
<if condition="$post['signature'] AND in_array($GLOBALS[forumid], array(5,6,7))">

wimzik
09-28-2007, 07:47 PM
Thank You!!! works great!