Skip to content

Instantly share code, notes, and snippets.

@zorem
Last active May 1, 2023 15:16
Show Gist options
  • Save zorem/cb494d4837c1ab7cbd87da16478bb544 to your computer and use it in GitHub Desktop.
Save zorem/cb494d4837c1ab7cbd87da16478bb544 to your computer and use it in GitHub Desktop.
filter in the checkout validation for exclude country from dropdown
<?php
// Checkout Validation exclude country
add_filter('checkout_validation_exclude_country', 'checkout_validation_exclude_country');
function checkout_validation_exclude_country(){
return array('US');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment