06/30/2015 at 9:50 am
#339082
Keymaster
@ Alicia
Ok this can be done with a filter. Install the Code Snippets plugin and add a new snippet with the following code:
add_filter( 'cn_output_default_atts_address', 'cn_address_format' );
function cn_address_format( $atts ) {
$atts['format'] = '%line1% %line2% %line3% %city% %state% %zipcode% %country%';
return $atts;
}
add_filter( 'cn_output_default_atts_phone', 'cn_phone_format' );
function cn_phone_format( $atts ) {
$atts['format'] = '%number%';
return $atts;
}
Save and activate the new snippet. Now the label will be removed.
Hope that helps!
