woocommerce_countries_using_vat filter-hookWC 1.0

Usage

add_filter( 'woocommerce_countries_using_vat', 'wp_kama_woocommerce_countries_using_vat_filter' );

/**
 * Function for `woocommerce_countries_using_vat` filter-hook.
 * 
 * @param  $countries 
 *
 * @return 
 */
function wp_kama_woocommerce_countries_using_vat_filter( $countries ){

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

Where the hook is called

WC_Countries::countries_using_vat()
woocommerce_countries_using_vat
woocommerce/includes/class-wc-countries.php 439
return apply_filters( 'woocommerce_countries_using_vat', $countries );

Where the hook is used in WooCommerce

Usage not found.