fc_checkout_after_step_payment_fields

Table Of Contents

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

Description #

Fires after the payment fields step.

Examples #

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

What are your feelings

Updated on February 28, 2026