View Full Version : Turning off the Censor in certain Forums
Ba'al
01-29-2013, 10:20 PM
I know this has been posted but i just cant seem to find it "How do i turn off the Censorship in certain Forums", i apologize for this
but i just couldn't find it and searches brought up nothing.
Lynne
01-30-2013, 03:29 AM
Try the forumdisplay_start hook location and something like this:
if ($foruminfo['forumid'] == x) {
$vbulletin->options['enablecensor'] = 0;
}
Note that this will have no effect on posts already made and censored in that forum.
Ba'al
01-30-2013, 07:17 PM
Try the forumdisplay_start hook location and something like this:
if ($foruminfo['forumid'] == x) {
$vbulletin->options['enablecensor'] = 0;
}
Note that this will have no effect on posts already made and censored in that forum.
And change 'enable' to 'disable' in that certain forum, ok gotcha........Thanx Lynne
Lynne
01-30-2013, 08:12 PM
No. The name of the option is "enablecensor" not "disablecensor" (there is no such option as "disablecensor"). So, turn on the censor and then use that plugin to turn it off (0 for off, 1 for on) in that forum.
Ba'al
01-31-2013, 04:43 AM
gotcha, sorry its been a long couple of days
Thanx, Lynne
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.