unset shipping country in function.php
-
Hello,
please I need help to unset a shipping country with function.php because some countries I am only allowed to ship if logged in user is id 123 or some else of rules.For example without any if question I will unset BG and RO:
function distributor_shippingarea( $fields ) {
unset($fields[‘shipping’][‘shipping_country’][‘BG’]);
unset($fields[‘shipping’][‘shipping_country’][‘RO’]);
return $fields;
}
add_filter( ‘woocommerce_checkout_fields’ , ‘distributor_shippingarea’ );I get no error but it do not work also. I have in my dropdown fields of the shipping country Romania and Bulgaria to select.
Please where is my mistake?
The page I need help with: [log in to see the link]
- The topic ‘unset shipping country in function.php’ is closed to new replies.