Your theme is not loading jQuery.
Check that your head.php file is firing the wp_head() function.
You also seem to be using W3 Total Cache. Does it work when this is deactivated? If so, check your settings.
-
This reply was modified 8 years, 10 months ago by
twinpictures.
Twinpictures,
Thank you for your quick response. I got it! I added this to the end of functions.php:
if (!is_admin()) add_action(“wp_enqueue_scripts”, “my_jquery_enqueue”, 11);
function my_jquery_enqueue() {
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, “http” . ($_SERVER[‘SERVER_PORT’] == 443 ? “s” : “”) . “://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js”, false, null);
wp_enqueue_script(‘jquery’);
}
Thank you!
Glad you got it sussed out, and thank’s for sharing your solution.
Issue marked as resolved.