Title: How to not load the tabber javascript code?
Last modified: August 21, 2016

---

# How to not load the tabber javascript code?

 *  Resolved [Wastabik](https://wordpress.org/support/users/wastabik/)
 * (@wastabik)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/how-to-not-load-the-tabber-javascript-code/)
 * Though I’m not using tabber function right now, the theme seems to be loading
   the js when I check the blog with Pingdom. How can I stop the theme from loading
   the tabber js every time it loads?
 * The tabber js is a great functionality in the theme but I have to stop using 
   it as it seems to be hindering in the smooth loading of the site.

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

 *  Theme Author [Richie KS](https://wordpress.org/support/users/rkcorp/)
 * (@rkcorp)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/how-to-not-load-the-tabber-javascript-code/#post-4712170)
 * best way, create a new file in wp-content/ name it meso-custom-functions.php (
   check faq #14) and add this code
 *     ```
       add_action( 'wp_print_scripts', 'meso_deregister_tab_js', 100 );
       function meso_deregister_tab_js() {
       wp_deregister_script( 'tabber' );
       }
       ```
   
 * or add in functions.php but you will lose the change when theme update.
 *  Thread Starter [Wastabik](https://wordpress.org/support/users/wastabik/)
 * (@wastabik)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/how-to-not-load-the-tabber-javascript-code/#post-4712208)
 * Thanks Richie, that did it.

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

The topic ‘How to not load the tabber javascript code?’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/mesocolumn/1.6.5.1/screenshot.
   png)
 * MesoColumn
 * [Support Threads](https://wordpress.org/support/theme/mesocolumn/)
 * [Active Topics](https://wordpress.org/support/theme/mesocolumn/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/mesocolumn/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/mesocolumn/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Wastabik](https://wordpress.org/support/users/wastabik/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/how-to-not-load-the-tabber-javascript-code/#post-4712208)
 * Status: resolved