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