Skip to content

Instantly share code, notes, and snippets.

@kenanfallon
Forked from rutger1140/gist:4994751
Last active September 18, 2015 01:16
Show Gist options
  • Save kenanfallon/d9632aee088727da284f to your computer and use it in GitHub Desktop.
Save kenanfallon/d9632aee088727da284f to your computer and use it in GitHub Desktop.
Gravity Forms hook - disable auto scrolling to anchor after submit
// Gravity Forms anchor - disable auto scrolling of forms
add_filter("gform_confirmation_anchor", create_function("","return false;"));
//Gravity Forms anchor - with form ID
add_filter( 'gform_confirmation_anchor_5', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment