Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Controls whether to display steps count in the progress bar.
Parameters #
$display_count(bool) Whether to display step count. Defaults totrue.
Examples #
/**
* Hide step count in progress bar
*/
function hide_progress_bar_step_count( $display_count ) {
return false;
}
add_filter( 'fc_checkout_progress_bar_display_count', 'hide_progress_bar_step_count', 10 );
