Hi, I´m trying to exclude some shipping places in my online store. I tried with this code in functions.php:
add_filter(‘woocommerce_states’, ‘my_custom_states’);
function my_custom_states( $states ) {
unset($states[‘ES’][‘TF’]);
return $states;
}
But it breaks the product hover effect. Also when I select the excluded state in the drop down list in the shipping address fields, the right sidebar with the price keeps loading all the time.
What can I do to exclude shipping states without breaking my site, or exclude those states from the list, or put a message like “we don’t ship to this state”?
Thanks