Jquery not functioning

  • Author
    Posts
  • #24230
    Rumjanoid

    When I try to customize Parabola, the Parabola Settings page mentions:

    Checking jQuery functionality…
    If this message remains visible after the page has loaded then there is a problem with your WordPress jQuery library. This can have several causes, including incompatible plugins. The Parabola Settings page cannot function without jQuery.

    I removed all plugins and tried updating jquery by adding this to functions.php:

    if( !is_admin()){
    wp_deregister_script(‘jquery’);
    wp_register_script(‘jquery’, (“http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js”), false, ‘1.9.1’);
    wp_enqueue_script(‘jquery’);};

    and:

    wp_deregister_script(‘jquery’);
    wp_register_script(‘jquery’, (“http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js”), false, ‘1.9.1’);
    wp_enqueue_script(‘jquery’);

    but with no change

    #24233
    Rumanoid

    The script above did fix the front page image scroller. I am using the last script, at the bottom of the post.

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Jquery not functioning’ is closed to new replies.