08/13/2014 at 10:28 am
#300762
Keymaster
@ Marco
The filter would be this:
add_filter( 'cn_output_default_atts_contact_name', 'cn_remove_label_separator' );
function cn_remove_label_separator( $atts ) {
$atts['label'] = '';
$atts['separator'] = '';
return $atts;
}
With this, you will not need to use Say What? to remove the Contact label.
Hope that helps!
