cluckeyo Posted September 6, 2017 Share 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. Quote Link to comment Share on other sites More sharing options...
burt Posted September 6, 2017 Share 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. Quote Link to comment Share on other sites More sharing options...
♥frankl Posted September 7, 2017 Share 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. Quote osCommerce user since 2003! Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.