woocommerce_cart_hide_zero_taxes filter-hookWC 1.0

Usage

add_filter( 'woocommerce_cart_hide_zero_taxes', 'wp_kama_woocommerce_cart_hide_zero_taxes_filter' );

/**
 * Function for `woocommerce_cart_hide_zero_taxes` filter-hook.
 * 
 * @param  $true 
 *
 * @return 
 */
function wp_kama_woocommerce_cart_hide_zero_taxes_filter( $true ){

	// filter...
	return $true;
}
$true
-

Where the hook is called

WC_Cart::get_tax_totals()
woocommerce_cart_hide_zero_taxes
woocommerce/includes/class-wc-cart.php 897
if ( apply_filters( 'woocommerce_cart_hide_zero_taxes', true ) ) {

Where the hook is used in WooCommerce

Usage not found.