Skip to content

Instantly share code, notes, and snippets.

@bporcelli
Created March 30, 2015 16:49
Show Gist options
  • Select an option

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

Select an option

Save bporcelli/d07b7a77acc2c8a8cb67 to your computer and use it in GitHub Desktop.
Demonstrates the usage of the wootax_fee_tic filter
/**
* Change WooTax fee TIC to 11000
*/
function wootax_change_fee_tic( $tic ) {
return 11000;
}
add_filter( 'wootax_fee_tic', 'wootax_change_fee_tic' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment