Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
This action hook fires before the order review title in the order review section.
Examples #
/**
* Add order review title prefix
*/
function add_order_review_title_prefix() {
echo '<div style="display: inline-block;">Prefix</div>';
}
add_action( 'fc_checkout_after_order_review_title_before', 'add_order_review_title_prefix', 10 );