Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires after the order summary section.
Examples #
/**
* Add order review content
*/
function add_order_review_content() {
echo '<div class="order-review-info">Custom content</div>';
}
add_action( 'fc_checkout_after_order_review', 'add_order_review_content', 10 );
