fc_checkout_header_logo

Table Of Contents

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

Description #

Fires to output the site logo in the distraction-free checkout header.

This hook is called as a fallback option to get the site logo image in this order:

  1. Use logo image from the plugin settings
  2. This hook fc_checkout_header_logo
  3. Use the logo image from WordPress settings
  4. Show site name in text format.

Examples #

/**
 * Add custom header logo
 */
function add_custom_header_logo() {
    $home_url = apply_filters( 'fc_checkout_header_logo_home_url', home_url( '/' ) );
    echo sprintf(
        '<a href="%s" class="custom-logo-link" rel="home">%s</a>',
        esc_url( $home_url ),
        '<img src="custom-logo.png" alt="Custom Logo" class="header-logo">'
    );
}
add_action( 'fc_checkout_header_logo', 'add_custom_header_logo', 10 );

What are your feelings

Updated on March 2, 2026