woocommerce_cart_shipping_method_full_label хук-фильтрWC 1.0

Использование

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
-

Где вызывается хук

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

Где используется хук в WooCommerce

Использование не найдено.