Skip to content

Instantly share code, notes, and snippets.

@jbd91
Last active May 11, 2018 15:12
Show Gist options
  • Save jbd91/56abb883023703a6089d2e0cd546210c to your computer and use it in GitHub Desktop.
Save jbd91/56abb883023703a6089d2e0cd546210c to your computer and use it in GitHub Desktop.
Gravity Forms Tab Index Fix
// Fix Gravity Form Tabindex Conflicts
add_filter( 'gform_tabindex', 'gform_tabindexer', 10, 2 );
function gform_tabindexer( $tab_index, $form = false ) {
$starting_index = 1000; // if you need a higher tabindex, update this number
if( $form )
add_filter( 'gform_tabindex_' . $form['id'], 'gform_tabindexer' );
return GFCommon::$tab_index >= $starting_index ? GFCommon::$tab_index : $starting_index;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment