Search code examples
tinymce

How to hide toolbar with buttons in TinyMCE?


I want to hide the button toolbar in tinymce.

How to do that?


Solution

  • Using tinyMCE 4 you can set the following in the tinymce init:

    toolbar: false
    

    Here is a full blown example of the init if you want a clean editor with no options:

    <script type="text/javascript">
        tinymce.init({
            menubar: false,
            statusbar: false,
            toolbar: false
        });
    </script>