fc_checkout_after_contact_fields

Table Of Contents

Back to list of all filter and action hooks for Fluid Checkout Lite.

Description #

Fires after the contact fields are rendered.

Examples #

/**
 * Add contact step footer
 */
function add_contact_footer() {
    echo '<p>We will use this to contact you about your order</p>';
}
add_action( 'fc_checkout_after_contact_fields', 'add_contact_footer', 10 );

What are your feelings

Updated on February 27, 2026