/**
* Remove commas from category output
*
*/
function be_dps_remove_commas_from_category_output( $output ) {
return str_replace( ',', '', $output );
}
add_filter( 'display_posts_shortcode_category_display', 'be_dps_remove_commas_from_category_output' );
See: https://wordpress.org/support/topic/remove-comma-from-post-category/