Apparently, the default WordPress style files overwrite a custom TinyMCE skin. So what you need to do is deregister WordPress’s TinyMCE skin.
Since I needed the custom skin to only apply on the front-end on my website, I wrapped it inside an !is_admin() conditional.
function remove_editor_buttons_style() {
// If not on wp-admin
if ( !is_admin() ) {
wp_deregister_style( 'editor-buttons' );
}
} add_action( 'wp_enqueue_scripts', 'remove_editor_buttons_style' );
Related Posts:
- Creating a wp_editor instance with custom tinyMCE buttons
- Remove HTML editor and visual/HTML tabs from TinyMCE
- How to get the input of a TinyMCE editor when using on the front-end?
- Load wp_editor via ajax [duplicate]
- TinyMCE 4.x : How to customize toolbar on wp_editor()
- How to use the new Dashicons for custom TinyMCE buttons?
- Add unique class or ID information to tinyMCE
- TinyMCE Anchor Button not showing
- “wp_editor” not displaying TinyMCE correctly when square brackets used in name
- Secure Validation of wp_editor in Theme Options
- Tiny MCE not adding p tag when saving theme option
- TinyMCE Editor Set Default Tab
- Registering custom TinyMCE buttons, for admin area, to work with custom instances of wp_editor
- Remove quicktag buttons but not Visual / Text editor and tabs
- TinyMCE editor – new lines not rendered on front end
- How to get WP editors tinyMCE instances
- TinyMCE strips line breaks on mceAddControl
- Count Words using tinymce in the front-end
- tinyMCE.activeEditor = null WP editor loaded in ‘Text’ mode?
- Add table controls with wp_editor minimal editor configuration (‘teeny’)
- Change Default Font Size and Remove Unwanted Font Sizes in TinyMCE
- TinyMCE Plugin Parameter
- wpeditor issue – shows both mode and not able to focus/edit during visual mode
- wp_editor on input changes content
- Limit Block format tags in WordPress wp_editor
- How to remove the statusbar from the default wordpress editor?
- wp.editor.initialize does not show the same default toolbar
- Stop WordPress Visual Editor converting backticks into code blocks
- TinyMCE Editor change underline button behavior – u tag instead of span text-decoration underline
- wordpress qtranslate editor text is not working [closed]
- Is it possible to disable the image alignment options in the post editor?
- How to dynamically generate wordpress editor on frontend?
- Change syntax styling of TinyMCE HTML Text Editor
- More than one TinyMCE (wp_editor) with different $settings[‘drag_drop_upload’] values breaks
- Adding custom styles to elements, without creating new elements
- wp_editor not modify html tags of initial content
- allowing all HTML tags in tinymce editor
- Stop editor from adding “amp;” after every “&”
- TinyMCE 4 & wp_editor multiple editor issue
- How to remove buttons from tinyMCE in wp_editor added via AJAX
- Loading a self-hosted custom @font-face into TinyMCE dropdowns (Classic Editor) via ‘tiny_mce_before_init’ filter
- Load WordPress Editor .css on Front End
- “Formats” Select Menu in WP Editor doesn’t show up with correct colour
- WordPress Editor without buttons
- Adding a class to custom TinyMCE button using WPLinks dialog box
- How to remove “justifyfull” in TinyMCE
- wp_editor Too Tall when Content is Loaded
- Inline Editing with wp_editor and tinymce (problem with textarea)
- Adding New Row of Custom TinyMCE
- How to add placeholder in wp_editor?
- How do I include a TinyMCE editor in the frontend?
- Stop editor from removing tags and replacing them with nbsp
- Possible to stop WordPress from adding p1, p2… classes to p tags in TinyMCE?
- Custom Tiny MCE button to bring up a custom php popup
- How can I stop TinyMCE from converting my HTML entities to characters?
- How to keep non-breaking spaces in the visual editor?
- Is there a way to prevent the Editor from modifying my HTML
- Creating a custom MCE view for your shortcodes [closed]
- Apply custom style to single word in WordPress
- How to keep a textarea and stop tinymce?
- TinyMCE – Show Advanced Options (2nd Row) By Default
- help on wp_editor via ajax load [duplicate]
- Disable TinyMCE autoformatting
- TinyMCE – Add class to OL – selector doesn’t seem to get parent OL,UL, just LI’s (4.6.3)
- TinyMCE Keyup Function
- Insert text a cursor position in to TinyMCE text editor
- Hide TinyMCE controls in TinyMCE 4 (WordPress 3.9)
- Access tinymce from thickbox
- TinyMce in WordPress – Getting the “fullscreen” button to stay on the right when customising button layout
- WordPress editor strips out anchor tags when they appear on their own line
- Sortable WYSIWYG editor
- Add table button in editor without Plugin
- Convert textarea with wp_editor
- TinyMCE as comment editor – encoding issues
- Prevent the Editor From Moving My
- How to reference TinyMCE body in my script
- customize tiny MCE blockqute
- tiny_mce_before_init is not trigger
- Adding CSS to admin TinyMCE editor for custom button
- Blank spaces show as a question mark
- Can i set css class for table via TinyMCE [closed]
- Where’s the explanation of the TinyMCE’s vars in the WP core?
- How to edit blockquote image
- Customizing tinyMCE 4 Styles and Format dropdowns
- WordPress (TinyMCE) not removing script tags
- Why Editor reformats my code
- How can I remove using built in wordpress filters
- TinyMCE is inactive after installation
- How to set custom TinyMCE format style as default?
- Did Gutenberg block editor change the html in post content during import?
- Remove distraction free mode from teeny editor
- How to load WP_Editor JS files manually (with AJAX)?
- Prevent Black Studio TinyMCE from adding tags when switching from Visual to HTML mode
- TinyMce Chrome newline issue
- Custom shortcode editor [BackboneJS & TinyMCE)
- What is zinging my HTML commands? I don’t think I can blame TinyMCE this time…
- wp-editor-area textarea disapear on cancel-comment-reply-link click
- wp_editor() in content that was loaded with ajax [duplicate]
- Is there an alternative way to upload html without using TinyMCE?
- Add new MCE button for toggle specific cell background color