fc_checkout_payment

Table Of Contents

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

Description #

Fires to output the payment section on the checkout page.

Examples #

/**
 * Add payment section content
 */
function add_payment_content() {
    echo '<div class="payment-info">Choose your payment method</div>';
}
add_action( 'fc_checkout_payment', 'add_payment_content', 10 );

What are your feelings

Updated on February 28, 2026