• Resolved ss_2010

    (@ss_2010)


    Hi
    After WordPress update ACF wysiwyg editor looks like a text area. It has missing icon and all text in white. I have tried to figure out this issue by deactivating all plugins and switching default wp theme but unfortunately no luck.Also checked JS error and found nothing. Also tested with WordPress 4.7 but didn’t work .

    I am attaching screenshot what editor looks like,please have a look and let me know whats wrong.

    ThanksACF Wysiwyg Editor

Viewing 1 replies (of 1 total)
  • I have the same problem as well. It seems to be limited to user accounts that have “Disable the visual editor when writing” checked.

    I worked around it with CSS and a custom function.

    Add to functions.php:

    add_action('admin_enqueue_scripts', 'admin_style');
    
    function admin_style() {
    	wp_enqueue_style('admin-styles',  get_template_directory_uri() . '/_css/wp-admin.css');
    }

    Add to a new CSS file in your theme:

    .js .tmce-active .wp-editor-area[class] {
    	color: #000;
    }

    I don’t know if that causes any other issues, but it fixed the problem for me for now.

Viewing 1 replies (of 1 total)
  • The topic ‘Wysiwyg editor white text and missing icon’ is closed to new replies.