fc_checkout_before_main_section

Table Of Contents

Back to list of all filter and action hooks for Fluid Checkout Lite.

Description #

Fires before the checkout page main section content is rendered.

Examples #

/**
 * Add opening tag for inner container
 */
function add_inner_container_opening_tag() {
	?>
	<div class="container_inner custom-class">
	<?php
}
add_action( 'fc_checkout_before_main_section', 'add_inner_container_opening_tag', 10 );

What are your feelings

Updated on December 16, 2025