I use tinymce and i want to hide the button toolbar. Is there a way to do that?
Use the branding option to disable the “Powered by Tiny” link displayed in the status bar for product attribution.
max_width. This option sets the maximum width that a user can stretch the entire TinyMCE interface (by grabbing the draggable area in the bottom right of the editor interface). This behavior is different than the autoresize plugin, which controls the resizing of the editable area only, not the entire editor.
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>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With