To remove the woocommerce base shop page from any sitemap add the following code to your function.php file
//remove shop base from sitemap add_filter( 'wpseo_sitemap_post_type_archive_link', 'my_wpseo_cpt_archive_link', 10, 2); function my_wpseo_cpt_archive_link( $link, $post_type ) { // Disable product/post archives in the sitemaps if ( $post_type === 'product' ) return false; return $link; }