MyBB Hacks

Full Version: mybb Word Filters for guests only
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello my name is Christine and i`m a newbie and i have a little question.
After one year of working on my board i thought it might be a solution to put a small fees for the members. I was thinking if it possible to add a censorship with Word Filters for VIP Members (a group) only. I mean to be able to add some words at Word Filters and to be seen only by a specify group
It is a little difficult for me to find a solution as i am not a programmer Frown
Any help is much appreciate TongueTongue
Dumb code edit which simply disables the badword filter for non-guests:
in inc/class_parser.php find:

PHP Code:
if($this->options['filter_badwords'])

Replace with

PHP Code:
if($this->options['filter_badwords'] && !$mybb->user['uid'])


If you want a plugin or something more elaborate, elegant, powerful etc try asking on the MyBB community boards.

Thank you ZiNgA BuRgA for the direction!
Reference URL's