Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires to output the distraction-free checkout header on the checkout page.
Examples #
/**
* Add checkout header content
*/
function add_checkout_header_content() {
echo '<div class="custom-checkout-header" style="text-align: center;">Custom checkout header content</div>';
}
add_action( 'fc_checkout_header', 'add_checkout_header_content', 10 );
