Title: Remove Tinymce
Last modified: December 9, 2024

---

# Remove Tinymce

 *  Resolved [kostritsaalex](https://wordpress.org/support/users/kostritsaalex/)
 * (@kostritsaalex)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/remove-tinymce/)
 * How to get rid of Tinymce editor in post creation form and replace it with just
   plain text box?
   Thanks

Viewing 1 replies (of 1 total)

 *  Plugin Author [Sajjad Hossain](https://wordpress.org/support/users/codersajjad/)
 * (@codersajjad)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/remove-tinymce/#post-18188987)
 * 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:
 *     ```wp-block-code
       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.

 * ![](https://ps.w.org/bbp-core/assets/icon-128x128.png?rev=3503409)
 * [Forumax – AI Powered Advanced Community Forum Plugin](https://wordpress.org/plugins/bbp-core/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bbp-core/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bbp-core/)
 * [Active Topics](https://wordpress.org/support/plugin/bbp-core/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bbp-core/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bbp-core/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Sajjad Hossain](https://wordpress.org/support/users/codersajjad/)
 * Last activity: [1 year, 5 months ago](https://wordpress.org/support/topic/remove-tinymce/#post-18188987)
 * Status: resolved