Skip to content

Instantly share code, notes, and snippets.

@bporcelli
Last active September 16, 2019 13:05
Show Gist options
  • Select an option

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

Select an option

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
<?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