woocommerce_before_shipping_calculator action-hookWC 1.0

Usage

add_action( 'woocommerce_before_shipping_calculator', 'wp_kama_woocommerce_before_shipping_calculator_action' );

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

	// action...
}

Where the hook is called

In file: /templates/cart/shipping-calculator.php
woocommerce_before_shipping_calculator
woocommerce/templates/cart/shipping-calculator.php 20
do_action( 'woocommerce_before_shipping_calculator' ); ?>

Where the hook is used in WooCommerce

Usage not found.