Hi,
I removed sidebar for single product page with the following function:
/* remove single product sidebar */
function woocommerce_remove_sidebar_shop() {
if( is_product() )
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );
}
add_action( 'template_redirect', 'woocommerce_remove_sidebar_shop' );
But unfortunately white sidebar still existing and I did not figure out how to set single product page with full width. I tried some css what I found on none of them helps.
Hopefully you could help me with this 🙂