Skip to content

Instantly share code, notes, and snippets.

@brycejacobson
Created September 11, 2013 20:00
Show Gist options
  • Save brycejacobson/6528973 to your computer and use it in GitHub Desktop.
Save brycejacobson/6528973 to your computer and use it in GitHub Desktop.
Move Gravity Forms jQuery Calls to Footer
<?php
// Move Gravity Forms jQuery calls to footer
add_filter("gform_init_scripts_footer", "init_scripts");
function init_scripts() {
return true;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment