Quote:
Originally Posted by crkgb
Thank you. Super fast.
Also many people have custom bb codes. Those are displayed if included in the beginning of the article. Is there a way to disable those in the articles.php display?
|
open articles.php
line 304
PHP Code:
$thread = process_thread_array($thread, $lastread, $foruminfo['allowicons']);
Add after:
PHP Code:
$thread[preview] = str_replace('[custombbcode]', '', $thread[preview]);
$thread[preview] = str_replace('[/custombbcode]', '', $thread[preview]);