Visual Editor Blank, No Text Editor
-
After loading a theme, I lost my visual editor view. It is there, but when I type it is white on white. I deleted the theme and activated Twenty Twelve. It still does not work. I have no plugins.
Here is what I found in the forums and I did all of these things. None have worked.
Go to your wp-admin, your profile, and ensure “Disable the visual editor when writing” is unchecked.– Rename your wp-content/plugins folder to plugins-old or something like that. You should then be able to determine if your visual editor is working at all. This step allows you to verify that the visual editor is working and in fact a plugin was the culprit.
– Go into Settings -> General settings and if there is a colon ‘:’ in the end of the Site URL (eg: https://www.mysite.com/wordpress:) then remove the colon.
– switch to the Twenty Ten theme to rule out any theme-specific problems.
– Make sure your WP version is up to date.
– Consider a WYSIWYG editor like TinyMCE Advanced and see if that solves things.
– Follow WP’s instructions on how to deactivate all plugins
– Try re-uploading the wp-admin and wp-includes folders from a fresh download of WordPress.
It shouldn’t come to this, but if all else fails, back up your wp-includes/general-template.php, and ensure these lines are there:
function user_can_richedit() { global $wp_rich_edit, $is_gecko, $is_opera, $is_safari, $is_chrome, $is_IE; if ( !isset($wp_rich_edit) ) { $wp_rich_edit = false; if ( get_user_option( 'rich_editing' ) == 'true' || ! is_user_logged_in() ) { // default to 'true' for logged out users if ( $is_safari ) { $wp_rich_edit = ! wp_is_mobile() || ( preg_match( '!AppleWebKit/(\d+)!', $_SERVER['HTTP_USER_AGENT'], $match ) && intval( $match[1] ) >= 534 ); } elseif ( $is_gecko || $is_chrome || $is_IE || ( $is_opera && !wp_is_mobile() ) ) { $wp_rich_edit = true; } } } return apply_filters('user_can_richedit', $wp_rich_edit); }
The last one gave me an error and I lost the whole site. I went back to the existing version and everything came back but the editor.
I edited CSS in /wp-includes/css/editor-buttons.css.
From: .js .tmce-active .wp-editor-area{color:white;}
To: .js .tmce-active .wp-editor-area{color:black; /* bwh */}Also, I have the tab for text editor, but when I click on it I stay on visual text editor.
Any suggestions? I am at: https://www.hlnwebdesigns.com/cms
This is a test site as an addon to my regular site while I set up a wordpress site.Helen
- The topic ‘Visual Editor Blank, No Text Editor’ is closed to new replies.