Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the order review contents, inside the order summary section.
Examples #
/**
* Add order review intro
*/
function add_order_review_intro() {
echo '<p>Please review your order before proceeding</p>';
}
add_action( 'fc_checkout_before_order_review_inside', 'add_order_review_intro', 10 );
