woocommerce_after_shipping_calculator
Usage
add_action( 'woocommerce_after_shipping_calculator', 'wp_kama_woocommerce_after_shipping_calculator_action' );
/**
* Function for `woocommerce_after_shipping_calculator` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_after_shipping_calculator_action(){
// action...
}Where the hook is called
woocommerce_after_shipping_calculator
woocommerce/templates/cart/shipping-calculator.php 96
<?php do_action( 'woocommerce_after_shipping_calculator' ); ?>