View Full Version : Forum & Sig Question
Kevin104
08-28-2002, 02:46 PM
Would it be possible to turn sigs off for a specific forum? I have a forum setup as a FAQ and the sigs don't look good.
Thanks for any help!
Logician
08-28-2002, 08:08 PM
edit admin/functions.php, find:
if ($post[showsignature] and $allowsignatures and trim($post[signature])!="" and ($bbuserinfo[userid]==0 or $bbuserinfo[showsignatures])) {
Replace it AS:
if ($post[showsignature] and $forum[forumid]!=X and $allowsignatures and trim($post[signature])!="" and ($bbuserinfo[userid]==0 or $bbuserinfo[showsignatures])) {
Replace X with your forumid that you dont allow signatures..
Kevin104
09-04-2002, 10:49 AM
Worked like a charm.....thanks!
DaveG
05-22-2003, 04:18 PM
I'm rusty with the coding here... How would I modify the statement to exclude signatures from more than 1 forum ID?
Logician
05-23-2003, 10:43 AM
if ($post[showsignature] and ($forum[forumid]!=X AND $forum[forumid]!=Y) and $allowsignatures and trim($post[signature])!="" and ($bbuserinfo[userid]==0 or $bbuserinfo[showsignatures])) {
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.