Created
September 29, 2021 12:00
-
-
Save woogist/0727f049858a30e53c2ce18801f8f3a4 to your computer and use it in GitHub Desktop.
filter the countries where the VAT number field will show for
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_eu_vat_number_country_codes', 'woo_custom_eu_vat_number_country_codes' ); | |
function woo_custom_eu_vat_number_country_codes( $vat_countries ) { | |
// only show field for users in BE | |
return array( 'BE' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment