fc_checkout_order_review_content

Table Of Contents

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

Description #

Fires when the order summary content is rendered.

Examples #

/**
 * Add order review content
 */
function add_order_review_content() {
    echo '<div class="order-review-info">Custom content</div>';
}
add_action( 'fc_checkout_order_review_content', 'add_order_review_content', 10 );

What are your feelings

Updated on March 2, 2026