Problem: I would like to remove the sidebar from WooCommerce Product pages.
Solution: It depends on your theme, and whether or not you are using Layouts. Some themes provide Theme Options that allow you to turn sidebars on or off on particular pages. Some popular themes already have these options integrated in Layouts, so you can select Theme Options for each Layout.
Some themes hard-code this sidebar in PHP and there's nothing WooCommerce Views can do about it. In that case, you must create your own custom PHP template to remove the sidebar. If your theme has a full-width PHP template (which does not use a sidebar), you can copy that file from your parent theme and save it as single-product.php in wp-content/themes/your-child-theme/woocommerce. This will override the default product page design and remove the sidebar. Then WooCommerce Views can be used to design the main content area when you select "Your Child Theme Custom Product Template"
Relevant Documentation: https://developer.wordpress.org/themes/basics/template-hierarchy/
https://toolset.com/documentation/user-guides/getting-started-woocommerce-views/