Skip to content

Instantly share code, notes, and snippets.

@zorem
Last active November 25, 2022 08:43
Show Gist options
  • Save zorem/5487605c2dfe92e849520adbdda4f1ac to your computer and use it in GitHub Desktop.
Save zorem/5487605c2dfe92e849520adbdda4f1ac to your computer and use it in GitHub Desktop.
filter in the checkout validation for allowed country from dropdown
<?php
// Checkout Validation allowed country
add_filter('checkout_validation_allowed_country', 'checkout_validation_allowed_country');
function checkout_validation_allowed_country(){
return array('AU');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment