-
-
Save kenanfallon/d9632aee088727da284f to your computer and use it in GitHub Desktop.
Gravity Forms hook - disable auto scrolling to anchor after submit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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