How can I disable the plugin calling jQuery?
-
I’m minifying my JS and CSS calls, and I’ve encountered an issue tha tI believe is down to this plugin calling jQuery within the files.
The problem is that, if I leave every JS call out of my functions file, the plugin will call jQuery and place it in the header.
I wan’t all JS in the footer, so I wp_deregister_script(‘jquery’), and then include my minified JS file that already includes the entire copy of jquery. Then it gets placed in the footer.
What happens then is the stars don’t show. If I take away the wp_deregister_script(‘jquery’), then the plugin places a call to jquery in the head.
Can I disable this, so that the plugin doesn’t call jQuery at all?
- The topic ‘How can I disable the plugin calling jQuery?’ is closed to new replies.