woocommerce_cart_shipping_method_full_label
Usage
add_filter( 'woocommerce_cart_shipping_method_full_label', 'wp_kama_woocommerce_cart_shipping_method_full_label_filter', 10, 2 );
/**
* Function for `woocommerce_cart_shipping_method_full_label` filter-hook.
*
* @param $label
* @param $method
*
* @return
*/
function wp_kama_woocommerce_cart_shipping_method_full_label_filter( $label, $method ){
// filter...
return $label;
}
- $label
- -
- $method
- -
Where the hook is called
woocommerce_cart_shipping_method_full_label
woocommerce/includes/wc-cart-functions.php 399
return apply_filters( 'woocommerce_cart_shipping_method_full_label', $label, $method );