Viewing 1 replies (of 1 total)
  • Plugin Author ImageSajjad Hossain

    (@codersajjad)

    Hi,

    The TinyMCE editor is a default feature provided by bbPress. However, you can replace it with a plain text editor by adding the following custom code to your theme’s functions.php file:

    add_filter('bbp_after_get_the_content_parse_args', 'custom_plain_text_editor');  

    function custom_plain_text_editor($args) {
    $args['tinymce'] = false; // Disable TinyMCE editor
    $args['quicktags'] = false; // Disable Quicktags toolbar
    $args['textarea_rows'] = 10; // Set the number of rows for the textarea
    return $args;
    }

    Feel free to try this solution, and if you need further assistance, don’t hesitate to reach out to us.

Viewing 1 replies (of 1 total)

The topic ‘Remove Tinymce’ is closed to new replies.