• Resolved rowiro

    (@rowiro)


    Is it possible to get rid of Sidebar on Product Archive Page.

    It seems to be very well hidden.

    I can’t seem to find the correct way of doing so.

    Thanks for any help…

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello @rowiro

    Here’s the documentation for the product archive pages: https://creativethemes.com/blocksy/docs/woocommerce/product-archives/. It contains all the information you need on how to customise these pages, including how to hide the sidebar.

    Hope this helps!

    Thanks.

    Thread Starter rowiro

    (@rowiro)

    Follow up.

    I used

    .woocommerce.archive .ct-sidebar {
    display: none;
    }

    .woocommerce.archive .ct-content {
    width: 100%;
    }

    which results in

    and I would like Product Cards at 100% of page which is obviously not working.

    So, like i mentioned before help/advice is appreciated.

    Hello @rowiro

    Have you checked the link that I shared above? 🙂

    There’s no need for CSS, as these options are already available in the Customiser.

    Thanks.

    Thread Starter rowiro

    (@rowiro)

    Thanks Eduard @cteduard ,

    I have been looking through all documentation. There is no way of turning off sidebar. It only mentions to edit sidebar with widgets. But no matter what i do. I end up with <aside></aside>.

    Hello @rowiro

    Not exactly sure where you have looked, but I can tell you for sure the option is presented there: https://ibb.co/C30PzqNH. Can you perhaps give it a second look? I’m sure you should be able to find it.

    Thanks.

    Thread Starter rowiro

    (@rowiro)

    I also tested with

    function blocksy_remove_sidebar_for_woo_archives() {
    if (is_shop() || is_product_taxonomy()) {
    remove_action('blocksy:sidebar', 'blocksy_render_sidebar');
    }
    }
    add_action('wp', 'blocksy_remove_sidebar_for_woo_archives');

    @rowiro

    I’m not sure where you’re getting this code from, but I can assure you it is not from our side. Please check the screenshot that I have provided and the article, as I’m 200% sure you will find the option. Here is one more short video for your convenience: https://streamable.com/fy5r2b

    Thanks.

    Thread Starter rowiro

    (@rowiro)

    OK. Update. And I must say I am sorry for confusion.
    I just realized that I accidentally after revisting issue second time around opened the incorrect files (backup files) and therefore did not see expected results.
    You are correct it is doable through customizer.
    Thanks.
    All good now.

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

The topic ‘Product Archive Sidebar’ is closed to new replies.