azwick2

azwick2

@azwick2

Viewing 2 replies - 1 through 2 (of 2 total)
Author
Replies
  • in reply to: Sidebars Not Showing On Woocommerce Category Pages #3512

    HI Milan,

    That was exactly what I needed, thank you!

    I copy pasted that script from the developers guide, it has quotes in it. The only thing I changed was ‘Products’

    Its the first one under: sss_sidebar_activation_$id

    Ari

  • in reply to: Sidebars Not Showing On Woocommerce Category Pages #3507

    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!

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