cluckeyo 0 Posted September 6, 2017 Is there somewhere I can go that will explain about address formats. I am adding Sweden to my shipping options and where I go to add the country, it asks for the address format and gives a multiple choice of 1 - 5. Any help will be appreciated. Share this post Link to post Share on other sites
burt 5,612 Posted September 6, 2017 Address formats are stored in the database table: address_format You now need to determine how a swedish address is set out...and insert a new format into the table. I cannot remember if there is a page in admin to allow you to do that, so might need to be done direct on the database using (eg) phpmyadmin. Share this post Link to post Share on other sites
♥frankl 286 Posted September 7, 2017 These are the address formats you can choose from in Admin -> Locations/Taxes -> Countries as they appear in the database (the number is the address format id, $cr means a new line. the section with the / is the summary format) (1, '$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country', '$city / $country'), (2, '$firstname $lastname$cr$streets$cr$city, $state $postcode$cr$country', '$city, $state / $country'), (3, '$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country', '$state / $country'), (4, '$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country', '$postcode / $country'), (5, '$firstname $lastname$cr$streets$cr$postcode $city$cr$country', '$city / $country'); The only way to change them is by editing the database correctly. osCommerce user since 2003! Share this post Link to post Share on other sites