Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor twinpictures

    (@twinpictures)

    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 7 years, 4 months ago by twinpictures.
    Thread Starter bambicake

    (@bambicake)

    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!

    Plugin Contributor twinpictures

    (@twinpictures)

    Glad you got it sussed out, and thank’s for sharing your solution.
    Issue marked as resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Countdown Animation Not Working’ is closed to new replies.