I'm using the addressfield module with Drupal 7.10. I want a comma after the city name when displaying the addressfield. Currently addresses display like:
123 Main St
SomeCity California 90100
I want it to display like:
123 Main St
SomeCity, California 90100
(Note the comma after "SomeCity")
How can I achieve this?
UPDATE
This whole formatting of addresses is still shrouded in mystery for me. I'm starting to think the way to control the formatting is to create a custom ctools plugin. I found this api documentation:
http://api.drupalhelp.net/api/addressfield/addressfield.module/group/addressfield_format/7
I'm going to explore it.