Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #24193

    How do you hide the sidebar on category pages when using woocommerce?

    #122690

    I also wanted to add to my previous post. I would like for the side bar to be removed but also making the shop page 100% width.

    Is there an option in the theme to hide or show a certain sidebar?

    #122691

    Hi blingcart,

    No not for the WooCommerce generated pages. The theme tries to do as little as possible with WooCommerce so that it has the max flexibility with Woo Extensions and plugins.

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #top.tax-product_cat #main .sidebar {
    display: none;
    }
    #top.tax-product_cat .template-shop.content {
    width: 100%;
    border: none;
    }

    Which will force the archive pages to have no sidebar and be 100% width.

    Regards,

    Devin

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How do you hide sidebar on category pages when using woocommerce?’ is closed to new replies.