This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.
This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.
Yes, I knew there was a better way. It works, thank you!
The “Default Sidebar Layout” is full width, so I’m using the themeblvd_fixed_sidebars() function to override that for is_tax(‘juice_category’).
Hey, I think I tracked it down. I had to modify your themeblvd_fixed_sidebars() function so my taxonomy archives page would show sidebars. Is there any easier way to do that?
function themeblvd_fixed_sidebars( $position ) { $layout = themeblvd_config( 'sidebar_layout' ); // Sidebar Left, Sidebar Right, Double Sidebars if ( $layout == 'sidebar_'.$position || $layout == 'double_sidebar' || get_post_type()=='juice' || is_tax('juice_category')) { ... ... ...
That worked, thanks!