woocommerce_after_cart_item_name action-hookWC 1.0

Usage

add_action( 'woocommerce_after_cart_item_name', 'wp_kama_woocommerce_after_cart_item_name_action', 10, 2 );

/**
 * Function for `woocommerce_after_cart_item_name` action-hook.
 * 
 * @param  $cart_item     
 * @param  $cart_item_key 
 *
 * @return void
 */
function wp_kama_woocommerce_after_cart_item_name_action( $cart_item, $cart_item_key ){

	// action...
}
$cart_item
-
$cart_item_key
-

Where the hook is called

In file: /templates/cart/cart.php
woocommerce_after_cart_item_name
woocommerce/templates/cart/cart.php 100
do_action( 'woocommerce_after_cart_item_name', $cart_item, $cart_item_key );

Where the hook is used in WooCommerce

Usage not found.