Found the culprit behind the Page/Post editor’s disappearance after Icegram Popup plugin has been activated. It appears the /icegram/lite/assets/css/admin.min.css had hidden #postdivrich admin-wide, and not specifically when an Icegram Popup campaign is being edited. Because of this, the default Page and Post editor too will be hidden from view.
To overcome this for the time being, I came out with this solution. Please follow it step-by-step.
- Create a new CSS file, which I call it “override-icegram-admin.css”
- Insert the following CSS codes into it …
body:not(.post-type-ig_campaign) #postdivrich {
display: initial;
}
body:not(.post-type-ig_campaign) #postdivrich .wp-editor-container {
margin-left: 0;
}
- Save this CSS file, and upload it to your active theme’s directory
- Adding the following snippet into this active theme’s functions.php …
// Enqueue Admin Custom style (to be called after all styles)
add_action( 'admin_print_styles', function() {
wp_enqueue_style( 'override-icegram-admin', get_stylesheet_directory_uri(). '/override-icegram-admin.css' );
});
- Save the functions.php file, and that’s it!
Lets hope the developer(s) will look into this mistake and fix it immediately.