How to remove sidebar on WooCommerce for Unite theme

Hi there,

I use my site just for woocommerce and some blogging.

What I want is no sidebar, I deleted it by changing the sidebar.php and that works.

Now I want the page full width

and the pictures of woocommerce bigger.

site is www.coffeexperts.eu

Who can help me with this?

This code will get rid of sidebar and will make full width pages for WooCommerce pages only. Sidebar for other pages such as blog and other will be still there. Now WooCommerce product images will get bigger as well, they are resized based on content width.

.woocommerce #primary {
    width: 100%;
}
.woocommerce #secondary {
    display: none;
}

Let me know if this is what you were looking for.