MyBB Community Forums

Full Version: Removing options from the editor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When someone creates or replies to a post they use the standard editor. However there are three options in it I would like to remove. I seem to remember that this was possible but maybe I am mistaken.

[Image: editor.jpg]

I would like to remove the "Insert formated code", "Insert formated PHP code" and the last option in the row (seems on this forum to be for adding video to a post) which doesn't work on my forum.

Would anyone know how to get rid of them?
you have to modify editor.js file to remove unwanted buttons ...

simple method :
use below code at bottom of global.css OR at the bottom of editor's stylesheet.css

.toolbar_button_php {display: none !important;}
.toolbar_button_code {display: none !important;}
.toolbar_button_video {display: none !important;}
Thanks Ranjani, i was looking to remove the Video embedded thingy and you solution helped.