Here is how to remove the sidebar.
go to wp-content/plugins/woocommerce
in file single-product.php remove the following code
<?php
/**
* woocommerce_sidebar hook
*
* @hooked woocommerce_get_sidebar - 10
*/
do_action('woocommerce_sidebar');
?>
next edit the file archive-product.php and remove the following code
<?php
/**
* woocommerce_sidebar hook
*
* @hooked woocommerce_get_sidebar - 10
*/
do_action('woocommerce_sidebar');
?>
next we have to edit the style.css in your theme folder
find
#content-woocomerece
add the following before the } tag on the last line
width:100%;
NOTE: You can not add the /* */ to the line it will not comment it out.