fc_checkout_after_order_review_title_before

Table Of Contents

Back to list of all filter and action hooks for Fluid Checkout Lite.

Description #

Fires before order summary title.

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 );

What are your feelings

Updated on March 2, 2026