Hi Cristian (@machothemes).
The problem has occurred in more than one site.
In these sites I had the following GENERAL options active:
– Move scripts to the footer
– Load JS from Google Libraries
– Remove query strings
– Removes extra Font Awesome styles
Now:
1) I have deselect “Move scripts to the footer”
2) I have insert in my function.php this code:
function load_my_custom_scripts() {
// ------- Move javascripts from the Head to the Footer -------
remove_action('wp_head', 'wp_print_scripts');
remove_action('wp_head', 'wp_print_head_scripts', 9);
remove_action('wp_head', 'wp_enqueue_scripts', 1);
add_action('wp_footer', 'wp_print_scripts', 5);
add_action('wp_footer', 'wp_enqueue_scripts', 5);
add_action('wp_footer', 'wp_print_head_scripts', 5);
// ------- Move javascripts from the Head to the Footer -------
...
...
...
...
...
}
add_action( 'wp_enqueue_scripts', 'load_my_custom_scripts', 20 );
and everything is back to work as before.
I tried before making these changes to reload version 3.6.1 of your plugin and everything worked properly.
So I can tell you (with absolute certainty) that the problem is related only to the new version 3.7.0.
Regards.
Davide.