Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires to output the header widgets in the distraction-free checkout header.
Examples #
/**
* Add header widgets
*/
function add_header_widgets() {
echo '<div class="header-widgets">Header widgets content</div>';
}
add_action( 'fc_checkout_header_widgets', 'add_header_widgets', 10 );
