- If you are using Content Views Pro version 5.8.0 and higher versions, you can use the option:
Change the separator / between fields
under Display Settings >> Fields Settings >> Meta Fields.
-
If you are using Pro version 5.7.1 (and prior versions), to change the separator “/” between the meta data (author, category, date) to a different character, please add this code to file functions.php of your active theme:
// Content Views Pro - change separator between meta fields add_filter( 'pt_cv_field_meta_seperator', 'cvp_theme_field_meta_seperator', 10, 1 ); function cvp_theme_field_meta_seperator( $args ) { // Put your character here $args = ','; return $args; }
Best regards,