fc_checkout_before_payment

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

Description #

Fires before the payment section contents.

Parameters #

  • $checkout (WC_Checkout) WooCommerce checkout object.

Examples #

/**
 * Add payment intro
 */
function add_payment_intro( $checkout ) {
    echo '<p>Select your payment method</p>';
}
add_action( 'fc_checkout_before_payment', 'add_payment_intro', 10, 1 );

What are your feelings

Updated on February 28, 2026