If these appear on your site (e.g., Single Product Page), and you want them to go away, this code snippet will do that.
add_action("init", "my_remove_breadcrumbs");
function my_remove_breadcrumbs()
{
remove_action(
"woocommerce_before_main_content",
"woocommerce_breadcrumb",
20,
0
);
}