WordPress – WP Tab Widget Broken Fix

wordpress blue and white and grey logo

Last updated on April 1st, 2023 at 06:24 pm

Read Time:28 Second

Since the WordPress update to version 4.5, you may have noticed that your WP Tab Widget may not be working.

There is an update coming out soon to fix this, however, in the meantime for a quick fix, you can add the following code to your themes “function.php” file:

 if (!is_admin()) {  
     wp_deregister_script('jquery');  
     wp_register_script('jquery', ("https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"), false, '1.11.3');  
     wp_enqueue_script('jquery');  
 }  

This will now enable your WP Tab Widget to start working again.

Click to rate this post!
[Total: 0 Average: 0]

Free Subscription

If you want to be notified when we post more quality guides like this one, sign up to our free subscription service and you will receive an email when a new post is live.

Join 441 other subscribers.

No need to worry, we will not be filling your inbox with spam and you can unsubscribe anytime you like.


Leave us a message...

This site uses Akismet to reduce spam. Learn how your comment data is processed.