Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires when the order review 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 );
