07/24/2014 at 9:24 am
#297870
Keymaster
@ Marco
Yes, but not easily like in the premium templates.
Install the Code Snippets plugin:
https://wordpress.org/plugins/code-snippets/
Add the following code as a new snippet:
add_filter( 'cn_output_default_atts_address', 'cn_remove_label_separator' );
add_filter( 'cn_output_default_atts_phone', 'cn_remove_label_separator' );
add_filter( 'cn_output_default_atts_email', 'cn_remove_label_separator' );
add_filter( 'cn_output_default_atts_im', 'cn_remove_label_separator' );
add_filter( 'cn_output_default_atts_socialmedia', 'cn_remove_label_separator' );
add_filter( 'cn_output_default_atts_link', 'cn_remove_label_separator' );
add_filter( 'cn_output_default_atts_date', 'cn_remove_label_separator' );
function cn_remove_label_separator( $atts ) {
$atts['separator'] = '';
return $atts;
}
SAve and activate the new snippet.
Hope that helps!
If I have not asked and if you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!
http://wordpress.org/support/view/plugin-reviews/connections
