fc_checkout_after_order_review_title_after

Table Of Contents

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

Description #

Fires after order summary title.

Examples #

/**
 * Add order review title suffix
 */
function add_order_review_title_suffix() {
    echo '<div style="display: inline-block;">Suffix</div>';
}
add_action( 'fc_checkout_after_order_review_title_after', 'add_order_review_title_suffix', 10 );

What are your feelings

Updated on March 2, 2026