Please add this code to file functions.php in directory of your active theme:
// Content Views Pro - modify separator between categories add_filter( 'pt_cv_post_terms_output', 'cvp_theme_post_terms_modify_separator', 100, 3 ); function cvp_theme_post_terms_modify_separator( $args, $links, $taxonomy_terms ) { $args = str_replace( ', ', ' / ', $args ); # Remove the slash to use no separator return $args; }
Best regards,