PDA

View Full Version : Can I disable the cuss filter for some forums ???


Budweiser
03-25-2009, 04:17 PM
Is there a way for me disable the cuss filter for specified forums?

I didnt see an option in vBulletin. Is there a hack that will allow me to do this?

Thanks!

Lynne
03-25-2009, 04:18 PM
You can search for a hack, or just write a plugin to disable it in those forums (fetch_foruminfo hook location maybe?).

Budweiser
03-26-2009, 06:31 PM
I didnt see a plugin. If anyone knows of one, please let me know.

Thanks!

Lynne
03-26-2009, 06:48 PM
I don't think there is a plugin in the mods forums because it is just three simple lines of code you need.

if ($forumid == 'x')
{
$vbulletin->options['enablecensor'] = '0';
}

Budweiser
05-23-2009, 02:46 AM
Thanks...

Can you be more detailed on what file I need to edit?

Thnx.

Lynne
05-23-2009, 02:49 AM
If you don't know how to create a plugin, you should read this in the manual - Plugin System (http://www.vbulletin.com/docs/html/plugin_system)