02/05/2013 at 7:46 pm
#250804
Keymaster
Ok, open the template.php file found here:
../wp-content/connections_templates/slim
Find this in line 43:
$entry->getAddressBlock();
Change it to this, will put the address token parts in the order you need them. And if you do not need to change the order, skip this step completely:
$entry->getAddressBlock( array( 'format' => '%label% %line1% %line2% %line3% %city% %state% %zipcode% %country%' ) );
Now, all you need to do is add some CSS to the styles.css file found in the same folder
#cn-list .locality { display: block; }
#cn-list .region { display: block; }
#cn-list .postal-code { display: block; }