woocommerce_display_item_downloads filter-hookWC 1.0

Usage

add_filter( 'woocommerce_display_item_downloads', 'wp_kama_woocommerce_display_item_downloads_filter', 10, 3 );

/**
 * Function for `woocommerce_display_item_downloads` filter-hook.
 * 
 * @param  $html 
 * @param  $item 
 * @param  $args 
 *
 * @return 
 */
function wp_kama_woocommerce_display_item_downloads_filter( $html, $item, $args ){

	// filter...
	return $html;
}
$html
-
$item
-
$args
-

Where the hook is called

wc_display_item_downloads()
woocommerce_display_item_downloads
woocommerce/includes/wc-template-functions.php 3527
$html = apply_filters( 'woocommerce_display_item_downloads', $html, $item, $args );

Where the hook is used in WooCommerce

Usage not found.