Jery61007,
Yea, there are other plugins out there that can minify your scripts to help with load times but I’m not sure if there is one that will let you pick-and-choose which you place in the footer and which go in the header.
Because this plugin essentially removes the action of enqueuing scripts, you have to place scripts in the header “the old fashion way.” Hence the solution I posted above of de-enqueing the script and placing its code manually in the header. It achieves the same thing, done via your functions.php file, but isn’t “standard practice.”
At some point in the future I want to expand this plugin to give the option to pick and choose, and it might be built off of this solution – or a process of de-enqueuing specific scripts and re-enqueuing with the $in_footer
variable of wp_enqueue_script
set to true, I just haven’t had time to build and test an expanded version of this plugin yet. For now it’s a broad-stroke solution that works well in most cases, but may not be for everyone.
Thanks for the feedback!
Joshua