Skip to content

Instantly share code, notes, and snippets.

@woogist
Last active September 25, 2015 15:34
Show Gist options
  • Save woogist/4f6f2532758d554075f6 to your computer and use it in GitHub Desktop.
Save woogist/4f6f2532758d554075f6 to your computer and use it in GitHub Desktop.
WooCommerce Australia Post: adjust tax rate
add_filter( 'woocommerce_shipping_australia_post_tax_rate' , 'woocommerce_shipping_australia_post_custom_tax_rate' );
/**
* Adjust tax rate
*
* @access public
* @since 1.0
* @return void
*/
function woocommerce_shipping_australia_post_custom_tax_rate() {
return '0.09090909';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment