Support

Account

Home Forums Backend Issues (wp-admin) WYSIWYG Editor Fails To Load Reply To: WYSIWYG Editor Fails To Load

  • The disappearing WYSIWYG problem just recurred for me today with a new install of ACF. I’m sure everybody’s working hard on v5 but this is a pretty serious issue – you can’t have a plugin that creates more fields, taking fields out!

    ACF itself is *definitely* the source of the problem – I just removed all plugins and added them back one by one. Even without ACF Repeater and Options, only basic ACF seems to cause #postdivrich to load with display:none; – this seems to originate at the top of post.php itself, but my detective skills are lacking here.

    Overriding #postdivrich { display:none; } in the developer console causes the WYSIWYG to reappear.

    I just tried a hack, hooking on admin_init, where i force the display: block; style with !important, that works.

    
    function nim_show_editor(){ ?>
    	<style type="text/css">
    		#postdivrich {display: block !important;}
    	</style> <?php
    }
    add_action('admin_init', 'nim_show_editor');