woocommerce_cart_totals_after_shipping action-hookWC 1.0

Usage

add_action( 'woocommerce_cart_totals_after_shipping', 'wp_kama_woocommerce_cart_totals_after_shipping_action' );

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

	// action...
}

Where the hook is called

In file: /templates/cart/cart-totals.php
woocommerce_cart_totals_after_shipping
woocommerce/templates/cart/cart-totals.php 47
<?php do_action( 'woocommerce_cart_totals_after_shipping' ); ?>

Where the hook is used in WooCommerce

Usage not found.