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 after the fields elements.
Examples #
/**
* Add contact fields help text
*/
function add_contact_help() {
echo '<p>We will use information to contact you about your order!</p>';
}
add_action( 'fc_checkout_contact_after_fields', 'add_contact_help', 10 );
