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