Last active
September 16, 2019 13:05
-
-
Save bporcelli/732a267a50aae644438971a38b6e80f3 to your computer and use it in GitHub Desktop.
Force Simple Sales Tax to calculate and display taxes on the cart page
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
| <?php | |
| /** | |
| * Forces Simple Sales Tax to calculate and display taxes on the cart page. | |
| * | |
| * @return bool | |
| */ | |
| function sst_force_tax_display() { | |
| return is_cart() || is_checkout(); | |
| } | |
| add_filter( 'sst_calculate_tax_totals', 'sst_force_tax_display' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment