This topic has 5 replies, 2 voices, and was last updated 9 years, 8 months ago ago by Robert Hall
I’m aware this was raised and unresolved in a previous ticket (https://www.8theme.com/topic/issues-with-theme-and-wpengine/)
In WPengine – there’s a popup that wont go away when dismissed saying: “Copying to staging will overwrite any changes made recently to your staging site. Are you sure you want to do this?”
See the screenshot
Is there any chance you could take a look at this?
Thanks
Given that support don’t seem to want to look into this, I’ve spent time debugging it.
For anyone that’s facing this issue the conflict is between
the woopress themes admin.css
.wp-core-ui .modal {
top: 4% !important;
}
and the wpe-common.css in the wpengine-common mu-plugin
.modal {
position: fixed;
}
Removing the top: 4% !important attribute will fix the issue.
Is there a specific requirement for the 8themes attribute?
Here is a better fix for anyone that needs one for this issue:
Add this into a child functions.php file or as an mu-plugin
function wpe_remove_css()
{
if ($_GET[‘page’] == “wpengine-common”)
{
wp_dequeue_style(‘etheme_admin_css’);
}
}
add_action(‘admin_init’, ‘wpe_remove_css’, 100);
Hello,
Thank you for your help. We appreciate very much.
Regards,
Robert Hall.
The issue related to '‘Theme causes issues with and wpengine’' has been successfully resolved, and the topic is now closed for further responses