How to load a different theme for categories?

I need to load a completely different theme for my categories. My search came up with switch_theme function but it changes the theme permanently while I only need the theme change only occur on my category pages. Then I found this. add_filter( ‘template’, ‘my_change_theme’ ); add_filter( ‘option_template’, ‘my_change_theme’ ); add_filter( ‘option_stylesheet’, ‘my_change_theme’ ); function my_change_theme($theme) … Read more

Styleswitcher or themeswitcher to allow user to switch back to standard view from mobile device

I created a mobile version of my site with CSS, with all my styles in a single stylesheet (using @media only screen and (max-width: 480px), only screen and (max-device-width: 480px) to define mobile styles). When it’s all in a single stylesheet, it works fine. But I want to allow users to switch back to standard … Read more