Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the checkout form content is rendered, inside the content wrapper element.
Examples #
/**
* Add div opening tag before checkout
*/
function add_div_opening_tag() {
echo '<div class="custom-before-checkout">';
}
add_action( 'fc_checkout_before', 'add_div_opening_tag', 10 );
