Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the sidebar actions in the order review section.
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 );
