Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Deprecated: renamed in version 4.2.0 to fc_checkout_order_review_actions to follow naming conventions.
Fires before the sidebar actions.
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_sidebar_before_actions', 'add_sidebar_before_actions', 10 );
