Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@spivurno
Created March 7, 2019 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save spivurno/a596f27cf6684bda915b3612e67b1244 to your computer and use it in GitHub Desktop.
Save spivurno/a596f27cf6684bda915b3612e67b1244 to your computer and use it in GitHub Desktop.
<?php
/**
* Gravity Perks // Multi-page Navigation // Bypass Validation on Next
* https://gravitywiz.com/documentation/gravity-forms-multi-page-navigation/
*
* Bypass validation when clicking the next button. Navigation Activation Type must be set to "from the start".
*/
add_filter( 'gform_form_tag', function( $tag ) {
$tag .= '<input type="hidden" name="gw_bypass_validation" value="1">';
return $tag;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment