Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save bporcelli/568789c5bda0178fa672 to your computer and use it in GitHub Desktop.
Demonstrates the usage of the wootax_shipping_tic filter
/**
* Set shipping TIC to 90022
*/
function wootax_change_shipping_tic( $tic ) {
return 90022;
}
add_filter( 'wootax_shipping_tic', 'wootax_change_shipping_tic' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment