Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the footer widgets container.
Examples #
/**
* Add footer widgets intro
*/
function add_footer_widgets_intro() {
echo '<div class="footer-widgets-intro">Footer widgets Before</div>';
}
add_action( 'fc_checkout_footer_widgets_inside_before', 'add_footer_widgets_intro', 10 );
