XF 2.1 Remove Top Breadcrumb

An update on this in 2023! The code works fine to hide the bottom breadcrumb for those that need it. This post quickly solved that for me. The bottom instruction is:

CSS:
.p-breadcrumbs--bottom {
     display: none;
}
 
Top Bottom