Thanks,
I added the following code to my functions.php file in my x-child theme:
add_filter(‘sss_sidebar_activation_1’, ‘sidebar_1_activation’);
function ‘sidebar_1_activation'($active) {
if (!$active) {
$active = is_category(‘Products’);
}
return $active;
}
It then crashes my site. The sidebar id is 1, and the category is products. I currently have the sidebar set for custom rules, but I don’t have any enabled. What do I need to change?
Thanks!