Skip to content

Instantly share code, notes, and snippets.

@kloon
Last active November 26, 2020 02:21
Show Gist options
  • Save kloon/6305088 to your computer and use it in GitHub Desktop.
Save kloon/6305088 to your computer and use it in GitHub Desktop.
WooCommerce set tax exemption based on user role
<?php
add_filter( 'init', 'wc_tax_exempt_user_roles' );
function wc_tax_exempt_user_roles() {
if ( ! is_admin() ) {
global $woocommerce;
if ( current_user_can('wholesaler') || current_user_can('distributor') ) {
$woocommerce->customer->set_is_vat_exempt(true);
} else {
$woocommerce->customer->set_is_vat_exempt(false);
}
}
}
?>
@mdorchain
Copy link

This snippet won't work in your use case. You should take a look into the tax classes instead and define rules based on them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment