woocommerce_cart_shipping_method_full_label filter-hookWC 1.0

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

wc_cart_totals_shipping_method_label()
woocommerce_cart_shipping_method_full_label
woocommerce/includes/wc-cart-functions.php 372
return apply_filters( 'woocommerce_cart_shipping_method_full_label', $label, $method );

Where the hook is used in WooCommerce

Usage not found.