woocommerce_customer_taxable_address filter-hook . WC 1.0
Usage
add_filter( 'woocommerce_customer_taxable_address', 'filter_function_name_1970' ); function filter_function_name_1970( $array ){ // filter... return $array; }
- $array
- -
Where the hook is called
woocommerce_customer_taxable_address
woocommerce/includes/class-wc-customer.php 211
return apply_filters( 'woocommerce_customer_taxable_address', array( $country, $state, $postcode, $city ) );