fc_checkout_footer_widgets_inside_after

Table Of Contents

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

Description #

Fires after the footer widgets container.

Examples #

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

What are your feelings

Updated on March 2, 2026