nvm, removed it myself with css. If anyone is interested in how, I put this in my functions.php in my child theme
add_action('admin_head', 'remove_erro');
function remove_erro() {
echo '<style>
.modal-backdrop.in {
display: none !important;
}
</style>';
}
-
This reply was modified 7 years, 11 months ago by lordkleiton. Reason: formatting issues