Does anybody know how to implement the strip_bbcode() function or similar, so that we don't see bbcode displayed in the sidebar content? TIA
update:
I realized this is only occuring on my forum home page which uses vb cms widget, so I added this code:
$thread['previewtext'] = strip_bbcode($thread['previewtext'], true, true, false, true, false);
after this line:
$thread['previewtext'] = fetch_censored_text($parser->get_preview($thread['message'], $this->default_previewlen, $allow_html));
..in this file:
forum/packages/vbcms/widget/recentthreads.php
.. and it removed the bbcode.
apologies that this is not directly related to this mod.. This mod already removes bbcode from sidebar content as desired.
|