How to remove woocommerce_breadcrumb() from do_action( ‘woocommerce_before_main_content’ ); [closed]

The action is added at L47 of wc-template-hooks.php. So just remove action at the same priority.

Add this to your child theme functions.php file or as a separate plugin.

remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 );