woocommerce_shipping_rate_taxes filter-hook . WC 3.2.0
Set rate taxes.
Usage
add_filter( 'woocommerce_shipping_rate_taxes', 'filter_function_name_486', 10, 2 ); function filter_function_name_486( $data_taxes, $that ){ // filter... return $data_taxes; }
- $data_taxes
- -
- $that
- -
Changelog
Since 3.2.0 | Introduced. |
Where the hook is called
woocommerce_shipping_rate_taxes
woocommerce/includes/class-wc-shipping-rate.php 220
return apply_filters( 'woocommerce_shipping_rate_taxes', $this->data['taxes'], $this );