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