Use quicktags toolbar on any textarea

reading the quicktags.dev.js i see in the comments * Run quicktags(settings) to initialize it, where settings is an object containing up to 3 properties: * settings = { * id : ‘my_id’, the HTML ID of the textarea, required * buttons: ” Comma separated list of the names of the default buttons to show. Optional. … Read more

Remove quicktag buttons but not Visual / Text editor and tabs

I wish to remove the quick-tag buttons in the text (html) editor in TinyMCE but not the html editor itself nor the tabs for choosing between the editors. When I use $settings = array(‘quicktags’ => false); wp_editor($input, ‘editor_name’, $settings); WordPress removes the entire text editor and the Visual / Text tabs for choosing between the … Read more

Customizing HTML Editor Quicktags button to open a dialog for choosing insert options

I am looking for adding custom quicktag buttons, that would allow me to display a intermediary dialog before inserting the code. Situation Clicking a quicktag button opens a dialog or thickbox modal window. Opened dialog displays some options on the class, etc and an Insert button. Clicking “Insert” button inserts the code. Background To add … Read more