. functions.php, .
add_filter( 'wp_die_handler', 'my_wp_die_handler_function', 9 );
function my_wp_die_handler_function($function) {
return 'my_skip_dupes_function';
}
function my_skip_dupes_function( $message, $title, $args ) {
if (strpos( $message, 'Duplicate comment detected' ) === 0 ) {
remove_filter( 'wp_die_handler', '_default_wp_die_handler' );
}
return;
}