tags:

views:

227

answers:

2

does anyone know how you edit/maintain regions in magento - specifically adding ones for the uk.

Thanks,

Josh

A: 
  1. In the Magento admin console, go to System->Configuration

  2. Click on the "Manage Stores" link (In the upper left hand corner there's a section named "Current Configuration Scope".)

  3. From here you should see all the configured websites, stores, and store views in the Magento system. Explaining how all these related to one another is beyond the scope of any single StackOverflow article, but this wiki article has the basics and this wiki article may also be useful.

  4. You'll need to setup either a seperate website or a seperate store or a seperate store view for your UK store, depending on your needs (sorry to be so vague)

  5. Return to System->Configuration

  6. Click on the Current Configuration Scope drop down

You should now see a nested view of all your configured websites, stores and store views. Selecting "Default Config" will allow you to set config values for all stores. Selecting a specific website, store or store view from this menu will allow you to set config values for a specific website, store or store view. This will allow you to set specific config values for your UK store.

Alan Storm
A: 

Regions are stored inside 'directory_country_region' and 'directory_country_region_name' tables in database. Unfortunately there is no editor for them. You can inspect Mage_Directory module and look at sql installation scripts.

Zebooka