I have already set it to India, but my problem is with delivering specific products to a specific state
Example:
– Product A can be shipped to Delhi, Telangana
– Product B can be shipped to Tamilnadu, Delhi
The above 3 states are in India. Also, User can purchase only one product at a time.
When the user is trying to purchase “Product A”, the shipping states should show only Delhi and Telangana BUT NOT Tamilnadu.
How can we do this?
Btw, tried this:
$fields['shipping']['shipping_state']['options'] = array(
'DL' => 'Delhi', 'TS' => 'Telangana');
But woocommerce overrides this and displays all states.