Created
May 31, 2012 02:42
-
-
Save BronsonQuick/2840622 to your computer and use it in GitHub Desktop.
Add an anchor for Gravity Forms when forms are submitted
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
<?php | |
/* If the gravity form is below the fold the user can get confused if there isn't an anchor on the form */ | |
add_filter("gform_confirmation_anchor", create_function("","return true;")); | |
?> |
add_filter( 'gform_confirmation_anchor', '__return_true' );
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Still works perfectly, thanks!