fc_checkout_order_review_section

Table Of Contents

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

Description #

Fires to output the order summary in the sidebar section.

Examples #

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

What are your feelings

Updated on March 2, 2026