@osiak There’s an easy way to fix this in functions.php. I replaced it for an “-“. Just use this add_filter:
function customize_wc_errors( $error ) {
if ( strpos( $error, ‘billing ‘ ) !== false ) {
$error = str_replace(“billing “, “- “, $error);
}
return $error;
}
add_filter( ‘woocommerce_add_error’, ‘customize_wc_errors’ );