05/26/2014 at 2:08 pm
#292118
Keymaster
@ Mark
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'] = '%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='%line1% %line2% %line3% %city% %state% %zipcode% %country%']
I hope that helps.
