MyBB Community Forums

Full Version: Custom BBCode?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a core way to add custom BBCode? 

I want to add say, [OR]blablabla[/OR] which will automatically output as blablabla is this possible?

use MyBB MyCode
AdminCP > Settings > MyCode

Regular Expression:
\[or\](.*?)\[/or\]

Replacement:
<span style='color: orange'>$1</span>
(2017-03-10, 01:51 PM)spork985 Wrote: [ -> ]AdminCP > Settings > MyCode

Regular Expression:
\[or\](.*?)\[/or\]

Replacement:
<span style='color: orange'>$1</span>

Thanks for this but I figured it out myself, should help other people who stumble across this post though! Big Grin