PDA

View Full Version : Custom bb codes question


marcus123
09-21-2012, 08:17 AM
using this thread: https://vborg.vbsupport.ru/showthread.php?t=278422 i was able to add a custom bb code to advanced reply is there anyway to add one to the quick reply?

kh99
09-21-2012, 12:27 PM
I think that thread contains both examples - 'qr' = quick reply, 'fe' = full editor (advanced). If you want to add the same button to both you could do this:
if ($this->editor_type == 'qr' OR $this->editor_type == 'fe')


or if you want it to appear on all editors, try leaving out the if statement (and the curly braces) completely.

marcus123
09-21-2012, 11:48 PM
oh i see thanks