diff --git a/includes/abstracts/abstract-wc-product.php b/includes/abstracts/abstract-wc-product.php index 174db419516..d2dbc7a7b7f 100644 --- a/includes/abstracts/abstract-wc-product.php +++ b/includes/abstracts/abstract-wc-product.php @@ -401,7 +401,8 @@ class WC_Product { * @return bool */ public function is_taxable() { - return $this->tax_status == 'taxable' && get_option( 'woocommerce_calc_taxes' ) == 'yes' ? true : false; + $taxable = $this->tax_status == 'taxable' && get_option( 'woocommerce_calc_taxes' ) == 'yes' ? true : false; + return apply_filters( 'woocommerce_product_is_taxable', $taxable, $this ); } /**