Reputation: 18670
I'll like to know if is possible to add states and after create zones for a country like Venezuela. I look all over Magento Admin but didn't find where or if it's possible. Any help?
Upvotes: 0
Views: 286
Reputation: 3938
Yes Its possible to do this,
But you need to make script that inset new Items in the table called
directory_country_region
example ( adding new state for United Arab Emirates ) ( ISO 2-alpha AE ) City name Dubai Code DXB
so the query will be
INSERT INTO directory_country_region (region_id,country_id,code,default_name)
VALUES ('','AE','DXB','Dubai');
Inset as many as you want, you will find them everywhere in the checkout/shipping quote etc..
Upvotes: 2