woocommerce_after_cart
Usage
add_action( 'woocommerce_after_cart', 'wp_kama_woocommerce_after_cart_action' );
/**
* Function for `woocommerce_after_cart` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_after_cart_action(){
// action...
}Where the hook is called
In file: /templates/cart/cart.php
woocommerce_after_cart
woocommerce/templates/cart/cart.php 208
<?php do_action( 'woocommerce_after_cart' ); ?>