Created
September 11, 2013 20:00
-
-
Save brycejacobson/6528973 to your computer and use it in GitHub Desktop.
Move Gravity Forms jQuery Calls to Footer
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 | |
// 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