I'm trying to configure Tax Rates base on home state and other states but after selecting home country, unable to select States.
I'm able to select State if change ountry to US or other except India.
Please help
Solved! Go to Solution.
There isn't an interface so you'll need to execute mysql queries. If you are not familiar with databases maybe you'll prefer to get some tech help to do the work. Isn't too complex but is better if you can request qualified help.
Just an example for one new region:
INSERT INTO directory_country_region(country_id, code, default_name) VALUES ('AR','ba', 'Buenos Aires');
In my example, values are:
You'll need one query per region that you want to add.
Hi @cmpugay,
The reason is not all regions are included by default into Magento.
If you want to add new regions you'll need to add those values into the directory_country_region table (with the country association).
@ Damian,
Thanks for the help. Could you please help me on how to add States Values in directory_country_region table and associate with country.
There isn't an interface so you'll need to execute mysql queries. If you are not familiar with databases maybe you'll prefer to get some tech help to do the work. Isn't too complex but is better if you can request qualified help.
Just an example for one new region:
INSERT INTO directory_country_region(country_id, code, default_name) VALUES ('AR','ba', 'Buenos Aires');
In my example, values are:
You'll need one query per region that you want to add.