Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires to output the place order section of the checkout process.
Parameters #
$step_id(string) – The ID of the step in which the place order section is rendered.$is_sidebar(boolean) – Whether the place order section is being rendered in the sidebar.
Examples #
/**
* Add place order content
*/
function add_place_order_content( $step_id, $is_sidebar ) {
$location_class = $is_sidebar ? 'place-order-sidebar' : 'place-order-main';
echo '<div class="place-order-info ' . esc_attr( $location_class ) . '">Review and place your order!</div>';
}
add_action( 'fc_place_order', 'add_place_order_content', 10, 2 );
