Hello albumruber,
You can hide it via css. Add below css code into your current active child theme’s style.css file or you can add it additional css option into theme customizer.
/**** Remove From Pages and Blogs ****/
#crumbs {
display: none;
}
/**** Remove Only From Pages ****/
body.page #crumbs {
display: none;
}
Hope this will helps you.
Thanks !