How do I disbable the jQuery call in the footer made by the plugin? I need JQuery sitting in the head only, why is probably not important for this request.
I already have jQuery called in the head and need to disable the footer call please.
How do I disbable the jQuery call in the footer made by the plugin? I need JQuery sitting in the head only, why is probably not important for this request.
I already have jQuery called in the head and need to disable the footer call please.
You will need to deregister jquery by placing the following code before the wp_head() call in your theme
<?php wp_deregister_script(‘jquery’); ?>
Thanks but that didn't work. Note I am trying to remove the jQuery call in the footer inserted by the Gravity plugin.
I do not want to remove the call to jQuery in the head.
Forget my previous post. It worked once I removed the quotes from your code.
Thanks.