Back to list of all filter and action hooks for Address Book for WooCommerce.
Description #
Fires before the shipping calculator is rendered in the cart page.
Examples #
/**
* Add custom content before shipping calculator
*/
function my_custom_before_shipping_calculator() {
echo '<div class="shipping-notice">Free shipping on orders over $50!</div>';
}
add_action( 'fc_pro_before_shipping_calculator', 'my_custom_before_shipping_calculator', 10 );
