Skip to content

Instantly share code, notes, and snippets.

View kenanfallon's full-sized avatar

Kenan Fallon kenanfallon

View GitHub Profile
@kenanfallon
kenanfallon / gist:d9632aee088727da284f
Last active September 18, 2015 01:16 — forked from rutger1140/gist:4994751
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' );