woocommerce_order_is_vat_exempt filter-hookWC 1.0

Usage

add_filter( 'woocommerce_order_is_vat_exempt', 'wp_kama_woocommerce_order_is_vat_exempt_filter', 10, 2 );

/**
 * Function for `woocommerce_order_is_vat_exempt` filter-hook.
 * 
 * @param  $string 
 * @param  $that   
 *
 * @return 
 */
function wp_kama_woocommerce_order_is_vat_exempt_filter( $string, $that ){

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

Where the hook is called

WC_Abstract_Order::calculate_taxes()
woocommerce_order_is_vat_exempt
woocommerce/includes/abstracts/abstract-wc-order.php 1755
$is_vat_exempt = apply_filters( 'woocommerce_order_is_vat_exempt', 'yes' === $this->get_meta( 'is_vat_exempt' ), $this );

Where the hook is used in WooCommerce

Usage not found.