You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So for frontend default $BBCODE_TEMPLATE is used (the most restricted functionality).
For admins $BBCODE_TEMPLATE_ADMIN should be used, because you can't post forum topic in admin area and your options are the same as quest then. So check for ADMIN_AREA is useless for forum plugin.
For bbcodes there should be the same rules as for tinymce - separate template for mainadmin, admin, member, quest.
Because this is template, it's easy to customize this later if there is this need.
No idea how this worked in version 1, but now at least 'submitnews' template should be used for forum topic. OR add $BBCODE_TEMPLATE_FORUM to templates.
The text was updated successfully, but these errors were encountered:
Forum post shortcode:
{FORUM_POST_TEXTAREA}
use this definition for rendering bbarea:
return e107::getForm()->bbarea('post',$text,'forum');
'forum' is template used for bbcodes. This template doesn't exist.
Only available templates are:
So for frontend default
$BBCODE_TEMPLATE
is used (the most restricted functionality).For admins
$BBCODE_TEMPLATE_ADMIN
should be used, because you can't post forum topic in admin area and your options are the same as quest then. So check for ADMIN_AREA is useless for forum plugin.For bbcodes there should be the same rules as for tinymce - separate template for mainadmin, admin, member, quest.
Because this is template, it's easy to customize this later if there is this need.
No idea how this worked in version 1, but now at least 'submitnews' template should be used for forum topic. OR add $BBCODE_TEMPLATE_FORUM to templates.
The text was updated successfully, but these errors were encountered: