XF 2.2 Hiding unused BBCode

VoklLLC

Member
I have a few BBcodes that I disabled, but there are leftover tags like this [example] left over.

What is the best way to remove the leftover BBcode?
 
Most likely via the database. I found 2 posts for you handling this option.

This one:
and maybe better, this one:
You could then use just nothing between the second part of quotation marks.

So like this:
Code:
UPDATE xf_post SET message = REPLACE(message,'[example]','');
The last quotes are not " but ' and another ' but without space between them.
Use at your own risk.

Maybe @Brogan can confirm this is correct for your assurance.
 
Top Bottom