woocommerce_after_cart_item_name action-hook . WC 1.0
Usage
add_action( 'woocommerce_after_cart_item_name', 'action_function_name_9002', 10, 2 ); function action_function_name_9002( $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 85
do_action( 'woocommerce_after_cart_item_name', $cart_item, $cart_item_key );