fc_checkout_order_review_actions

Table Of Contents

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

Description #

Fires before the sidebar actions in the order review section.

Replaces the action hook fc_checkout_order_review_sidebar_before_actions which was removed in version Lite 4.2.0

Examples #

/**
 * Add sidebar actions
 */
function add_sidebar_before_actions() {
    echo '<div class="sidebar-actions">Please review your order before proceeding</div>';
}
add_action( 'fc_checkout_order_review_actions', 'add_sidebar_before_actions', 10 );

What are your feelings

Updated on March 2, 2026