woocommerce_product_is_taxable filter-hookWC 1.0

Returns whether or not the product is taxable.

Usage

add_filter( 'woocommerce_product_is_taxable', 'wp_kama_woocommerce_product_is_taxable_filter', 10, 2 );

/**
 * Function for `woocommerce_product_is_taxable` filter-hook.
 * 
 * @param  $condition 
 * @param  $that      
 *
 * @return 
 */
function wp_kama_woocommerce_product_is_taxable_filter( $condition, $that ){

	// filter...
	return $condition;
}
$condition
-
$that
-

Where the hook is called

WC_Product::is_taxable()
woocommerce_product_is_taxable
woocommerce/includes/abstracts/abstract-wc-product.php 1693
return apply_filters( 'woocommerce_product_is_taxable', $this->get_tax_status() === 'taxable' && wc_tax_enabled(), $this );

Where the hook is used in WooCommerce

Usage not found.