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 );
