05/21/2014 at 4:29 pm
#291794
Keymaster
@ Reggie
When using the default template this can only be accomplished by creating a filter. Add the following to the theme’s functions.php file:
add_filter( 'cn_output_default_atts_address', 'cn_set_default_address_format' );
function cn_set_default_address_format( $atts ) {
$atts['format'] = '%label% %line1% %line2% %line3% %city%, %state% %zipcode% %country%';
return $atts;
}
If you decide to purchase one of the commercial templates available on this site, you can adjust the address format by using a shortcode option, like so:
[connections addr_format='%label% %line1% %line2% %line3% %city%, %state% %zipcode% %country%']
I hope that helps.
