When setting the “Woocommerce Layout” in the Content Customizer to any value, the Woocommerce Shop page and the single Product page use the same setting. Is there a way to have the sidebar only on the Shop page and no sidebar on the single Product page?
Thanks for getting in touch! Unfortunately, that kind of function isn’t supported by our theme. But it sounds a great idea for a Feature Request so if you’ve a minute feel free to submit it. In the meantime, you can use this CSS snippet to remove the sidebar from single pages.
/* Hide sidebar on single product pages */
body.single-product .fl-sidebar {
display: none;
}
/* Extend content to 100% on single product pages */
body.single-product .fl-content {
width: 100%;
padding-right: 15px;
border-right: none;
}