Title: [Plugin: Tabbed Widgets] Broken in WordPress 3.3
Last modified: August 20, 2016

---

# [Plugin: Tabbed Widgets] Broken in WordPress 3.3

 *  [davemac](https://wordpress.org/support/users/davemac/)
 * (@davemac)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/)
 * Looks like the jquery UI is not being applied when this plugin is used in WP 
   3.3, which then breaks the layout and functionality.
 * [http://wordpress.org/extend/plugins/tabbed-widgets/](http://wordpress.org/extend/plugins/tabbed-widgets/)

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/page/2/?output_format=md)

 *  [Сергей](https://wordpress.org/support/users/rammkish/)
 * (@rammkish)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444670)
 * Don’t work “Style as: tabs”.
 *  [Mamdouh Kaldas](https://wordpress.org/support/users/elmalak/)
 * (@elmalak)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444831)
 * Same here, all there tabs are listed below each other, no tabs.
 *  [LMP](https://wordpress.org/support/users/loizos16673/)
 * (@loizos16673)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444858)
 * I can also confirm that this plugin is completely non-functional in WP 3.3
 *  [Tibor Paulsch](https://wordpress.org/support/users/tibor/)
 * (@tibor)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444878)
 * + 1
 *  [verlierer](https://wordpress.org/support/users/verlierer/)
 * (@verlierer)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444879)
 * Here’s the error I’m getting with tabs. (Note: the accordian setting seems to
   work, and the “tabs-nav” is properly appended in init-plugin.js)
 *     ```
       $(".tw-tabs", this).tabs is not a function
       wp-content/plugins/tabbed-widgets/js/init-plugin.js
       Line 51
       ```
   
 *  [verlierer](https://wordpress.org/support/users/verlierer/)
 * (@verlierer)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444880)
 * Okay. I’m hardly a wordpress pro, but I got this to work on WordPress 3.3 by 
   forcing “jquery.ui.tabs.min.js” to load by placing the following line in the 
   addHeader() function of tabbed-widgets.php in the Tabbed Widgets plugin:
 *     ```
       wp_enqueue_script('jquery-ui-tabs',  $this->plugin_path . 'js/jquery-ui-custom.min.js', array('jquery'), false, true);
       ```
   
 * Maybe that’ll help.
 *  [defoli](https://wordpress.org/support/users/defoli/)
 * (@defoli)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444893)
 * You are the best. Now it’s work again. Thanks!!!!
    Du bist der beste [@verlierer](https://wordpress.org/support/users/verlierer/).
   So läuft es wieder rund. Danke!!!!!!!!!!!!
 *  [ArtbyKat](https://wordpress.org/support/users/artbykat/)
 * (@artbykat)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444910)
 * Ahhhh brilliant – you’re a champion!
 *  [Mamdouh Kaldas](https://wordpress.org/support/users/elmalak/)
 * (@elmalak)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444911)
 * [@verlierer](https://wordpress.org/support/users/verlierer/):
    thank you, that
   worked right away after adding the code to tabbed-widgets.php file.
 *  [im92](https://wordpress.org/support/users/im92/)
 * (@im92)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444930)
 * Sorry to bother you.
 * Please I placed this code just below function addHeader() {
    and just above a
   similar code that I found there only that that one seems to be for the accordion.
   Somehow, it still does not work. Can you pls advise on the right place to place
   the code in the tabbed-widgets.php file?
 *  [Mamdouh Kaldas](https://wordpress.org/support/users/elmalak/)
 * (@elmalak)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444934)
 * [@im92](https://wordpress.org/support/users/im92/):
    this is how mine looks now
   and it works:
 *     ```
       function addHeader() {
       		wp_enqueue_script('jquery-ui-tabs',  $this->plugin_path . 'js/jquery-ui-custom.min.js', array('jquery'), false, true);
       		wp_enqueue_script('jquery-ui-accordion',  $this->plugin_path . 'js/jquery-ui-custom.min.js', array('jquery'), false, true);
       		wp_enqueue_script('jquery-ui-cookie',  $this->plugin_path . 'js/jquery-cookie.min.js', array('jquery-ui-accordion'), false, true);
       ```
   
 * good luck.
 *  [hirdesh.paliwal](https://wordpress.org/support/users/hirdeshpaliwal/)
 * (@hirdeshpaliwal)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444946)
 * Hi guys,
 * I am also using wordpress 3.3. with this widget and for me it worked with small
   tweaking in add header function in tabbed-widgets.php. Here is my add_header 
   function
 *     ```
       function addHeader() {
         wp_enqueue_script('jquery-ui-tabs',  $this->plugin_path . 'js/jquery-ui-custom.min.js', array('jquery'), false, false);
         wp_enqueue_script('jquery-ui-accordion',  $this->plugin_path . 'js/jquery-ui-custom.min.js', array('jquery'), false, false);
         wp_enqueue_script('jquery-ui-cookie',  $this->plugin_path . 'js/jquery-cookie.min.js', array('jquery-ui-accordion'), false, false);
   
         // Add default widgets styles
         wp_enqueue_style('tabbed-widgets', $this->plugin_path . 'css/tabbed-widgets.css');
   
         if (get_current_theme() == 'Twenty Ten')
          wp_enqueue_style('tabbed-widgets-2010', $this->plugin_path . 'css/twenty-ten.css');
        }
       ```
   
 * Hope it helps
 *  [johnnyjh](https://wordpress.org/support/users/johnnyjh/)
 * (@johnnyjh)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444960)
 * So glad others are actually posting their solutions. Thanks to you all. Saved
   me at least an hour of debugging.
 *  [andy](https://wordpress.org/support/users/aknapp1gmailcom/)
 * (@aknapp1gmailcom)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444978)
 * Hi all,
 * I’m having the same issue once I upgraded to wp 3.3. I tried the solutions suggested
   but still no luck. I’ve also re-installed the plugin, and disabled all others
   without any success.
 * I’m at a loss and hoping there are some other solutions out there.
 * Here is the site. The tabbed areas should be “latest headlines” & “hvwm library”
   in the sidebar below the big quote
    [http://hvwm.com/](http://hvwm.com/)
 * Thanks
 *  [rickymurphy](https://wordpress.org/support/users/rickymurphy/)
 * (@rickymurphy)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/#post-2444983)
 * I had the same issue, verlierer’s solution fixed it for me on 3 different sites.
 * Thank you!

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/page/2/?output_format=md)

The topic ‘[Plugin: Tabbed Widgets] Broken in WordPress 3.3’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/tabbed-widgets.svg)
 * [Tabbed Widgets](https://wordpress.org/plugins/tabbed-widgets/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tabbed-widgets/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tabbed-widgets/)
 * [Active Topics](https://wordpress.org/support/plugin/tabbed-widgets/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tabbed-widgets/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tabbed-widgets/reviews/)

 * 19 replies
 * 17 participants
 * Last reply from: [yuvrajjain](https://wordpress.org/support/users/yuvrajjain/)
 * Last activity: [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-tabbed-widgets-broken-in-wordpress-33/page/2/#post-2445048)
 * Status: not resolved