Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
This action hook fires before the order review section in the checkout process.
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_before_order_review', 'add_order_review_content', 10 );