mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
318 B
Text
8 lines
318 B
Text
add_filter( 'woocommerce_get_tax_location', 'bbloomer_customer_default_tax_location', 9999, 3 );
|
|
|
|
function bbloomer_customer_default_tax_location( $location, $tax_class, $customer ) {
|
|
if ( $customer && ! $customer->get_billing_country() ) {
|
|
return array( 'US', '', '', '' );
|
|
}
|
|
return $location;
|
|
}
|