Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1400544

    Hi,
    I would like to remove the sidebar from all my product category pages, but i can’t seem to figure out how to do that. I have disabled all sidebars under sidebar settings but it is still there. Can you please help me?

    #1400621

    Hey ditteditte,

    Thank you for the inquiry.

    You can disable the sidebar for the archive or category pages in the Enfold > Sidebar Settings panel. Set the Sidebar On Archive Pages settings to the third option (no sidebar).

    Best regards,
    Ismael

    #1400995

    I already have done that, but it is still there.

    #1401368

    Hi,
    Thanks for your patience and the link to your site, I’m not sure why this is occuring on your site as setting the Sidebar On Archive Pages works on my test site, so after much testing on your site I added this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    
    add_filter('avia_layout_filter', 'avia_change_post_layout', 10, 2);
    function avia_change_post_layout($layout, $post_id) {
        if( is_archive() ) {
            $layout['current'] = $layout['fullsize'];
            $layout['current']['main'] = 'fullsize';
        }
    
        return $layout;
    }

    And this seems to have solved, please clear your browser cache and check.

    Best regards,
    Mike

    #1468667

    Hi Mike,

    Its posible remove the sidebar in a category only.
    We have install in our web the woocommerce brands I would like remove the side bar only in this category.
    Thanks advance,

    BR,

    Antonio.

    #1468685

    Hi,

    We edited the filter a bit. Please try this code:

    add_filter('avia_layout_filter', 'avia_change_post_layout', 10, 2);
    function avia_change_post_layout($layout, $post_id) {
        if( is_tax('product_brand') ) { 
            $layout['current'] = $layout['fullsize'];
            $layout['current']['main'] = 'fullsize';
        }
    
        return $layout;
    }
    

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.