add_action( 'admin_footer', 'gdsnippet_fix_modal_css_conflict_admin', 99, 0 );
function gdsnippet_fix_modal_css_conflict_admin() {
global $current_screen;
$geo_cpts = geodir_get_posttypes();
if ( ! empty( $current_screen->post_type ) && in_array( $current_screen->post_type, $geo_cpts ) ) {
echo '<style>body.modal-open .aui-modal{opacity: 1;visibility: visible;z-index: 1055;}</style>';
}
}