fc_checkout_account_before_fields

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

Description #

Fires before the account fields section.

The account fields section is displayed in the contact sub-step when a user chooses to create an account via the ‘Create an account’ option, for guest checkout customers.

Parameters #

  • $checkout (WC_Checkout) WooCommerce checkout object.

Examples #

/**
 * Add custom message
 */
function add_custom_message( $checkout ) {
    echo '<div>Account Information</div>';
}
add_action( 'fc_checkout_account_before_fields', 'add_custom_message', 1, 10 );

What are your feelings

Updated on February 28, 2026