Skip to content

Instantly share code, notes, and snippets.

@bporcelli
Created April 22, 2015 19:50
Show Gist options
  • Select an option

  • Save bporcelli/15c47c2e86909ebc7766 to your computer and use it in GitHub Desktop.

Select an option

Save bporcelli/15c47c2e86909ebc7766 to your computer and use it in GitHub Desktop.
/**
* Substitute WooTax rate code with SALES-TAX
*/
function change_wootax_rate_code( $rate_code ) {
return "SALES-TAX";
}
add_filter( 'wootax_rate_code', 'change_wootax_rate_code' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment