Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/b6c57f1c2c374dd150d384dfcff20993 to your computer and use it in GitHub Desktop.
Save spivurno/b6c57f1c2c374dd150d384dfcff20993 to your computer and use it in GitHub Desktop.
Gravity Wiz // Gravity Forms // Display Navigation as "Step {currentPage} of {totalPages}"
<?php
/**
* Gravity Wiz // Gravity Forms // Display Navigation as "Step {currentPage} of {totalPages}"
* http://gravitywiz.com/
*/
add_filter( 'gform_progress_steps', function( $progress_steps, $form, $page ) {
$page = GFFormDisplay::get_current_page( $form['id'] );
$progress_steps = sprintf( 'Step %d of %d', $page, GFFormDisplay::get_max_page_number( $form ) );
return $progress_steps;
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment