Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires after the checkout steps container is rendered.
Parameters #
$checkout(WC_Checkout) WooCommerce checkout object.
Examples #
/**
* Add steps summary with reminder to review information
*/
function add_steps_summary( $checkout ) {
echo '<div class="steps-summary">You are almost there! Please double check all the information provided before placing your order.</div>';
}
add_action( 'fc_checkout_after_steps', 'add_steps_summary', 1, 10 );
