skip to Main Content

Inconsole it shows this error : Uncaught Error: Bootstrap’s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3

I checked the jquery file and it says the current version is 1.12

I just updated my wordpress website from version 5 to 6 and its showing this error, all the images are disappeared.

I checked the jquery file and it says the current version is 1.12

2

Answers


  1. Chosen as BEST ANSWER

    enter image description here

    Kindly see the error screenshot attached


  2. It’s been given on a WordPress forum link

    it could be due to WordPress’s jQuery or any JQmigrate used within plugins.

    Use the following code in your functions.php

    wp_deregister_script('jquery');
    wp_register_script('jquery', '//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js', false, null);
    wp_enqueue_script('jquery');
    

    Replace the jQuery URL with any active URL you want to use. Let me know if it works for you.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search