Hello,
You may change “Shop page display” settings in Customize > WooCommerce > Product Catalog. Widgets that are shown in the sidebar on shop page, and pages that inherit layout of Shop, you may change in Appearance > Widgets > Shop sidebar.
To disable the sidebar only on shop page, you may use this custom css code:
.post-type-archive .sidebar {
display: none;
}
.post-type-archive .content {
width: 100%;
margin-left: 0;
}
Regards