Hi,
I like many others forum owners have implemented a spoiler bbcode in my forums. Now I want to globally (for all usergroups) disable the use of the spoiler bbcode in signatures.
Is that an easy task? Any ideas?
Thank you,
Jonathan
EDIT: I have been investigating and found this from a member:
Quote:
To disable custom bbcodes in the signature add this hook bbcode_parse_start:
Code:
if ($forumid==='signature')
{
unset($this->tag_list['no_option']['bbcode_to_disable']);
}
|
However if I do that, my spoiler bbcode stop working on posts too. Can anyone give me a hand with the conditional please? Thank you.