Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the checkout steps container is rendered.
Parameters #
$checkout(WC_Checkout) WooCommerce checkout object.
Examples #
/**
* Add simple message above steps
*/
function add_steps_navigation( $checkout ) {
echo '<p class="notice">Free shipping on orders over $50!</p>';
}
add_action( 'fc_checkout_before_steps', 'add_steps_navigation', 1, 10 );
