Created
March 30, 2015 16:46
-
-
Save bporcelli/568789c5bda0178fa672 to your computer and use it in GitHub Desktop.
Demonstrates the usage of the wootax_shipping_tic filter
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
| /** | |
| * 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