woocommerce_after_cart_contents action-hookWC 1.0

Usage

add_action( 'woocommerce_after_cart_contents', 'wp_kama_woocommerce_after_cart_contents_action' );

/**
 * Function for `woocommerce_after_cart_contents` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_after_cart_contents_action(){

	// action...
}

Where the hook is called

In file: /templates/cart/cart.php
woocommerce_after_cart_contents
woocommerce/templates/cart/cart.php 175
<?php do_action( 'woocommerce_after_cart_contents' ); ?>

Where the hook is used in WooCommerce

Usage not found.