Hello,
If you want to remove whole breadcrumbs, Navigate to Layouts > Edit Single Product layout with wp bakery and remove the breadcrumb elements.
https://ibb.co/pf4FqXy
If you want to remove the last breadcrumbs only, try using the below Custom CSS code and paste it to Dashboard > Theme Settings > Custom CSS > Global Custom CSS:
.woocommerce-breadcrumb .breadcrumb-last:last-child, .yoast-breadcrumb .breadcrumb_last:last-child {
display: none;
}
Best Regards.