The hook admin_init
is to early for dequeuing, use wp_print_scripts
, see examples in the Codex.
define( 'SCRIPT_DEBUG', true );
will prevent combining dashboard scripts, so if that works for you on IE8, then do it for users with IE8:
/**
* True if user browser is IE8.
*/
$is_IE8 = preg_match( '/(?i)msie 8/', $_SERVER['HTTP_USER_AGENT'] );
/*
* Disable combining dashboard scripts for people using IE8.
*/
if( $is_IE8 ) {
define( 'SCRIPT_DEBUG', true);
}
Related Posts:
- Replace Taxomony Description Field with Visual/WYSIWYG Editor
- Is it possible to create nested lists in the WYSIWYG editor?
- How can I stop TinyMCE from converting my HTML entities to characters?
- Cite-Tag for blockquotes
- Apply custom style to single word in WordPress
- data-accordion removed in Visual Editor
- TinyMCE strips line breaks on mceAddControl
- Using main style.css with add_editor_style
- How can I control the HTML output of my post?
- Add a select a class dropdown in tinymce
- Custom settings page TinyMce: no formatting when echoing value of editor
- Stop WordPress Visual Editor converting backticks into code blocks
- How to dynamically generate wordpress editor on frontend?
- Tiny MCE doesn’t look anything like my blog
- Stop editor from adding “amp;” after every “&”
- How to apply padding to TinyMCE editor?
- WordPress adding extra html coding to my data on saving
- TinyMCE 4.0: specifying buttons to display [duplicate]
- WYSIWYG with HTML source?
- Add custom classes to TinyMCE generated markup
- Problem with Line spacing in wysiwyg editor in WP 3.5.1
- How to add “Insert/Edit link” button in custom popup tinymce window?
- How to disable TinyMCE from removing span tags
- WordPress automatically adding ” “?
- How to Add WYSIWYG Editor (tinyMCE) to plugin options page compatible with WordPress 3.0 and up?
- How to get the input of a TinyMCE editor when using on the front-end?
- Enqueue Script After TinyMCE initialized
- Unable to add “code” button to TinyMCE toolbar
- WordPress 3.2 has broken my TinyMCE code
- wp_editor disable after reaching character count limit
- Is it possible to re-use the image details popup?
- Visual Tab Missing From Editor
- How to use the new Dashicons for custom TinyMCE buttons?
- HTML5, WordPress and Tiny MCE issue – wrapping anchor tag around div results in funky output
- How can I filter Microsoft Word gunk from pasted content?
- Snippet: Use classes instead of inline styles for text alignment
- How to disable TinyMCE 4 keyboard shortcuts
- Tiny MCE not adding p tag when saving theme option
- How to add TinyMCE keyboard shortcut
- WordPress MultiSite Paste from Word Tool Does not work
- Remove quicktag buttons but not Visual / Text editor and tabs
- TinyMCE removes iframe attributes width and height
- WordPress tinymce prints empty P tag and break html format
- Append Font Family in TinyMCE
- Disabling TinyMCE keyboard shortcuts altogether
- Ability to edit image via WYSIWYG
- tinyMCE duplicates previous block element when pressing return (visual editor)
- Add table controls with wp_editor minimal editor configuration (‘teeny’)
- Enable Visual Editor In Comments On CPT Edit Page
- How do I add a listbox to the TinyMCE editor?
- Add TinyMCE editor to windowManager textbox
- Dynamically adding WYSIWYG to metaboxes
- Added custom styles to Visual Editor. Classes are appended and not replaced as intended
- TinyMCE – Add button that changes direction of selected text
- Preserving tabs and line breaks in when switching from HTML to Visual Editor
- Gutenberg; Rich Text/HTML for Metadata Textarea Control in Back End
- How to reset ‘Advance’ tab on table property?
- Add a TinyMCE Core Plugin Using tiny_mce_before_init
- Fontawesome icon vanishes in editor while switching text and visual mode
- editor text cut off when using 2 spaces (after periods)
- How does WordPress remember which editor is being used?
- Add buttons to the new TinyMCE WP Editor. Javascript API
- Advanced tinyMCE insert link error [closed]
- Is it possible to disable the image alignment options in the post editor?
- tinyMCE 4.0 custom button onclick no longer working
- Inserting code to HTML view from a pop up initiated from visual view
- Custom TinyMCE Editor Formats in Dropdown
- Why is the media upload button not in the main toolbar & can it be placed there instead?
- Can I disable `wp-tinymce.php` load as script?
- wp_editor – Media uploader button to tinymce
- Removing tags around tags
- Editor html formatting is different from view source
- WordPress no longer holding post formatting
- HTML formatting issues when switching between editor tabs
- Sanitizing textarea for wp_insert_post with TinyMCE enabled or disabled
- Getting shortcode attribute values and shortcode content with JavaScript regex
- Tiny MCE custom styles, and preview in the backend
- remove WYSIWYG editor but keep media button
- Best Browser for Editing Posts
- WordPress Tiny MCE won’t accept line breaks
- wp_tiny_mce function not found
- TinyMCE’s “Clear Formatting” button doesn’t remove lists and headings
- TinyMCE strips off the href tag inside span, if i change from text to visual
- clasic editor – article categories customization?
- Replace text by icon in TinyMCE toolbar
- TinyMCE Advanced Link Class List on the main editor
- TinyMCE function causes issue in AVADA theme
- Changing code with ( ) when author updates their post (TinyMCE)
- How do I externalize JQuery from my Tinymce Modal Dialog’s html and Enqueue the JS File to see JQuery
- How to modify VisualComposer’s TinyMCE editor only for a specific shortcode
- `tinyMCE is not defined` after migrating site to server
- Tinymce doesnt appear
- mce_external_languages: how does it really work?
- tinymce modal and I18n strings methods
- Edit body image after insertion in 3.9.1
- WordPress WYSIWYG editor on demand, responsive
- prevent caching during tinymce custom button development
- WordPress removes paragraphs. How to disable this behavior?
- WPAlchemy – Multiple TinyMCE editor blank (can’t add text)
- wp_insert_post() dont post content like i need it :(