Back to list of all filter and action hooks for Address Book for WooCommerce.
Description #
Fires after the shipping calculator is rendered in the cart page.
Examples #
/**
* Add custom content after shipping calculator
*/
function my_custom_after_shipping_calculator() {
echo '<div class="shipping-info">Need help? Contact our support team.</div>';
}
add_action( 'fc_pro_after_shipping_calculator', 'my_custom_after_shipping_calculator', 10 );
