diff --git a/includes/wc-core-functions.php b/includes/wc-core-functions.php index a3233faa257..6338f8875f8 100644 --- a/includes/wc-core-functions.php +++ b/includes/wc-core-functions.php @@ -1624,8 +1624,8 @@ function wc_uasort_comparison( $a, $b ) { */ function wc_ascii_uasort_comparison( $a, $b ) { if ( function_exists( 'iconv' ) ) { - $a = iconv( 'UTF-8', 'ASCII//TRANSLIT', $a ); - $b = iconv( 'UTF-8', 'ASCII//TRANSLIT', $b ); + $a = iconv( 'UTF-8', 'ASCII//IGNORE', $a ); + $b = iconv( 'UTF-8', 'ASCII//IGNORE', $b ); } return strcmp( $a, $b ); }