woocommerce_after_cart_totals
Usage
add_action( 'woocommerce_after_cart_totals', 'wp_kama_woocommerce_after_cart_totals_action' );
/**
* Function for `woocommerce_after_cart_totals` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_after_cart_totals_action(){
// action...
}Where the hook is called
In file: /templates/cart/cart-totals.php
woocommerce_after_cart_totals
woocommerce/templates/cart/cart-totals.php 110
<?php do_action( 'woocommerce_after_cart_totals' ); ?>
Where the hook is used in WooCommerce
woocommerce/includes/gateways/paypal/class-wc-gateway-paypal.php 238
add_action( 'woocommerce_after_cart_totals', array( $this, 'render_buttons_container' ) );