Simply put a condition before you call the menu in header.php, these is something like below:
<?php
if(!is_woocommerce()) {
//show the menu, or call wp_nav_menu(array(‘theme_location’ => ‘your-menu-name’));
}
?>
The above code did not show the menu in any woocommerce page.
Thanks!