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