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');
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.