fc_checkout_header_widgets

Table Of Contents

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

Description #

Fires to output the header widgets in the distraction-free checkout header.

Examples #

/**
 * Add header widgets
 */
function add_header_widgets() {
    echo '<div class="header-widgets">Header widgets content</div>';
}
add_action( 'fc_checkout_header_widgets', 'add_header_widgets', 10 );

What are your feelings

Updated on March 2, 2026