Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires after the checkout form content is rendered, inside the content wrapper element.
Examples #
/**
* Add div closing tag after checkout
*/
function add_div_closing_tag( $checkout ) {
echo '</div>';
}
add_action( 'fc_checkout_after', 'add_div_closing_tag', 1, 10 );
