fc_checkout_after_step_billing_fields

Table Of Contents

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

Description #

Fires after the billing address fields section.

Examples #

/**
 * Add billing step footer
 */
function add_billing_footer() {
    echo '<p>Please review your billing information before proceeding</p>';
}
add_action( 'fc_checkout_after_step_billing_fields', 'add_billing_footer', 10 );

What are your feelings

Updated on February 28, 2026