how to fix “You have some jquery.js library include that comes after the Slider Revolution files js inclusion.”

That error message

“You have some jquery.js library include that comes after the Slider Revolution files js inclusion.
To fix this, you can:
    1. Set ‘Module General Options’ -> ‘Advanced’ -> ‘jQuery & OutPut Filters’ -> ‘Put JS to Body’ to on
    2. Find the double jQuery.js inclusion and remove it”

comes from Slider Revolution (a popular WordPress slider plugin). It means that you’re loading jQuery twice — once before the Slider Revolution scripts (correct), and another time after it (wrong). This breaks the slider’s JavaScript dependencies.

Here’s how to fix it 👇

Option 1: Use Slider Revolution Settings

  1. Go to your WordPress Dashboard.
  2. Navigate to
    Slider Revolution → Module General Options → Advanced → jQuery & Output Filters.
  3. Turn “Put JS to Body”ON.
    • This ensures Slider Revolution JS loads after jQuery.
  4. Save the module and clear your cache.

Option 2: Remove Duplicate jQuery Includes

You may have another jQuery file being loaded by:

  • Your theme’s header.php or footer.php
  • A plugin that also includes jQuery manually
  • A custom script enqueue in functions.php

To check and fix:

  1. In your WordPress dashboard, go to Appearance → Theme File Editor → header.php (or use FTP).
  2. Search for lines like: <script src=”https://code.jquery.com/jquery.js”></script> or wp_enqueue_script(‘jquery’);
  3. You only need one wp_enqueue_script('jquery') — WordPress already loads it by default.
  4. Remove any manually added <script src="jquery.js"> lines that come after the Slider Revolution script.

Bonus Tip

To prevent this in the future:

  • Use WordPress’ built-in jQuery by enqueuing it properly in your theme: function mytheme_enqueue_scripts() {
    wp_enqueue_script(‘jquery’);
    }
    add_action(‘wp_enqueue_scripts’, ‘mytheme_enqueue_scripts’);
  • Avoid adding <script> tags manually in header/footer unless absolutely necessary.
Related Article
Learn How to Fix WordPress Search Not Working (3+ Major Issues Resolved)

Are you looking to solve WordPress search issues on your website? Troubleshooting WordPress search issues may be difficult. This is Read more

How to Fix WordPress\’s White Screen of Death issue

Don\'t be alarmed if you get a WordPress error message or a white screen. Someone has most certainly seen the Read more

WordPress Installation

WordPress Installation Procedures Get the package at http://www.wordpress.org. Open your root web server and install WordPress. When you extract it, Read more

How to Customize WordPress Site

Customize Your WordPress Site Navigate to http://localhost/thedemostore/wp - admin. You should get something like this: admin is the user name. Read more

About WordPress Post

What exactly is a WordPress Post? How to Create and Update a WordPress Post? A CMS can have various types Read more

Image Shared on WordPress to Facebook Not Coming Up? Here\’s what to do.

  When you share your blog posts or web pages on Facebook, the picture might not show up the way Read more

What are WordPress wp_head & wp_footer functions

The wp_head and wp_footer methods are two important things to add to a WordPress theme. \"Action hooks\" are used to Read more

How to fix There was an error trying to send your message. Please try again later.

You make contact forms to make it easy for your audience to get in touch with you. Whether you use Read more

Comments

No comments yet. Why don’t you start the discussion?

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    Prove your humanity: 5   +   10   =