fc_checkout_after

Table Of Contents

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

What are your feelings

Updated on December 16, 2025