Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires when the contact fields are rendered, inside the fields section wrapper before the fields elements.
Examples #
/**
* Add custom message
*/
function add_custom_message() {
echo '<div>Custom message</div>';
}
add_action( 'fc_checkout_contact_before_fields', 'add_custom_message', 10 );
