fc_checkout_footer

Table Of Contents

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

Description #

Fires to output the distraction-free checkout footer on the checkout page.

Examples #

/**
 * Add checkout footer content
 */
function add_checkout_footer_content() {
    echo '<div class="checkout-footer">Thank you for shopping with us</div>';
}
add_action( 'fc_checkout_footer', 'add_checkout_footer_content', 10 );

What are your feelings

Updated on March 2, 2026