Last active
September 25, 2015 15:34
-
-
Save woogist/4f6f2532758d554075f6 to your computer and use it in GitHub Desktop.
WooCommerce Australia Post: adjust tax rate
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_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