Title: [Plugin: Toolbar Theme Switcher] Sample filter application
Last modified: August 20, 2016

---

# [Plugin: Toolbar Theme Switcher] Sample filter application

 *  Resolved [janmalagucute](https://wordpress.org/support/users/janmalagucute/)
 * (@janmalagucute)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-toolbar-theme-switcher-sample-filter-application/)
 * Hi,
 * In FAQ it says
    I don’t want all themes to show… Filter tts_allowed_themes and
   unset unwanted themes.
 * Can you please elaborate on that?
    How can I apply filter? Where? I don’t see
   settings page.
 * [http://wordpress.org/extend/plugins/toolbar-theme-switcher/](http://wordpress.org/extend/plugins/toolbar-theme-switcher/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Andrey “Rarst” Savchenko](https://wordpress.org/support/users/rarst/)
 * (@rarst)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-toolbar-theme-switcher-sample-filter-application/#post-2944151)
 * The plugin doesn’t currently have settings page and tinkering opportunities are
   bit involved and take some basic dev skills.
 * For example if you want to hide Twenty Ten from switcher you can add this snippet(
   to your theme’s `functions.php` file for example):
 *     ```
       add_filter( 'tts_allowed_themes', 'hide_twenty_ten' );
   
       function hide_twenty_ten( $themes ) {
   
       	unset( $themes['Twenty Ten'] );
   
       	return $themes;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Toolbar Theme Switcher] Sample filter application’ is closed
to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/toolbar-theme-switcher_fefefe.svg)
 * [Toolbar Theme Switcher](https://wordpress.org/plugins/toolbar-theme-switcher/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/toolbar-theme-switcher/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/toolbar-theme-switcher/)
 * [Active Topics](https://wordpress.org/support/plugin/toolbar-theme-switcher/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/toolbar-theme-switcher/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/toolbar-theme-switcher/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Andrey “Rarst” Savchenko](https://wordpress.org/support/users/rarst/)
 * Last activity: [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-toolbar-theme-switcher-sample-filter-application/#post-2944151)
 * Status: resolved