Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the billing address fields section.
Examples #
/**
* Add Custom message to Billing only form
*/
function add_custom_message() {
echo '<div>Custom message</div>';
}
add_action( 'fc_checkout_before_step_billing_fields', 'add_custom_message', 10 );
