From my previous problem I have discovered I have to move one single plugins script to be loaded in the footer rather then the header (o other items can load first)
Is there a way (either in wordpress, or the actually plugin) to tell it to send one plugin to load in the footer somewhere? Maybe the location where ever it gives instructions to load in the header can be changed?
The last argument for
wp_enqueue_scriptis a Boolean whether to load the script in the footer:http://codex.wordpress.org/Function_Reference/wp_enqueue_script
So, use this before the head is outputted:
Then add
wp_footer()before closing off the body: