WordPress since 2003 ♡ WooCommerce since 2011

How to disable TaxJar adding taxes on WooCommerce Subscriptions free trials

When using TaxJar with WooCommerce Subscriptions, taxes can get calculated for free trials.

We will work on getting this fixed. In the mean time use this snippet to counter the behaviour:

remove_action( 'woocommerce_calculate_totals', array( $this, 'use_taxjar_total' ), 20 );
add_action( 'woocommerce_calculate_totals', array( $this, 'use_taxjar_total' ),5 );

Here is how to use custom code snippets.

keep reading?

Leave the first comment