Forums

Join
bbPress Support ForumsTroubleshootingRemove "Allowed markup" text on post page

Info

Remove "Allowed markup" text on post page

  1. On the post page, it says

    Allowed markup: BBcode a blockquote code em strong ul ol li img font strike center u hr cite.
    You can also put code in between backtick characters.

    How can I remove this text? I checked bb-post.php but couldn't figure it out.

    Thanks in advance!

  2. You just want the text removed so it doesn't show, even if people can still use it? If so, just edit your template files post-form.php and edit-form.php and remove the line that says:

    <p><?php _e('Allowed markup:'); ?> <?php allowed_markup(); ?>.
    <?php _e('Put code in between backticks.'); ?></p>

    If you actually want to change that or prevent the use of those tags, then you need to add a filter.

  3. Worked great, thanks!!

  4. You must log in to post.