Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires after the shipping address fields section.
Examples #
/**
* Add custom message
*/
function add_custom_message() {
echo '<div>Custom message after Shipping field</div>';
}
add_action( 'fc_checkout_after_step_shipping_fields', 'add_custom_message', 10 );
