fc_checkout_footer_widgets

Table Of Contents

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

Description #

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

Examples #

/**
 * Add footer widgets
 */
function add_footer_widgets() {
    echo '<div class="footer-widgets">Footer widgets content</div>';
}
add_action( 'fc_checkout_footer_widgets', 'add_footer_widgets', 10 );

What are your feelings

Updated on March 2, 2026