fc_checkout_before_main_section_wrapper

Table Of Contents

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 );

What are your feelings

Updated on December 16, 2025