Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires to render the checkout steps container and render each checkout steps.
By default, this hook outputs the standard checkout steps, but it can be overridden to provide custom step rendering.
Parameters #
$checkout(WC_Checkout) WooCommerce checkout object.
Examples #
/**
* Custom steps output
*/
function custom_steps_output( $checkout ) {
echo '<div class="custom-steps">Custom steps content</div>';
}
add_action( 'fc_checkout_steps', 'custom_steps_output', 1, 10 );
