There is no ‘easy’ way to remove the breadcrumbs as they are included in a number of templates. You would need to go through each of the bbPress templates and remove the following:
<?php bbp_breadcrumb(); ?>
I had a feeling you would say that. I was hoping there was a way of overriding the function/ some include file somewhere. Oh well – thanks for clarifying
Not that I am aware of.
I built my own custom template and simply moved all the calls to the breadcrumbs to my own single file which I include in my theme. This means edit only one place and I am golden. Took a bit of work though.
I’m guessing if there is some way of overriding the breadcrumbs programmaticly that JJ will chime in someday, I simply don’t know.
There is. $1 to the person that looks for the function and finds out how.
easier than I imagined.
function bm_bbp_no_breadcrumb ($param) {
return true;
}
add_filter ('bbp_no_breadcrumb', 'bm_bbp_no_breadcrumb');
How would you like to send me my dollar? 
Now if only I could work out why this isn’t working properly – http://bbpress.org/forums/topic/remove-default-template-styles?
@binarymoon – nicely done! PayPal okay?
I didn’t find any bm_bbp_no_breadcrumb in functions file
I created that function. You need to add it to your themes functions.php file
i do not think there is a way to remove the breadcrumbs
thanks binarymoon worked perfectly
Thanks, binarymoon! That is exactly what I needed.
I’ve removed all the breadcrumb calls in every template file but they still show up. I can’t use the filter because I have the call in header.php. Any idea why this isn’t working? For now I just solved it with CSS, but would like to know where the hook is.
#bbpress-forums .bbp-breadcrumb-home,
# bbpress-forums .bbp-breadcrumb-root,
# bbpress-forums .bbp-breadcrumb-separator,
# bbpress-forums .bbp-breadcrumb-current { display: none; }
argh! the code posting on this forum is so jinky…
thanks a lot binarymoon!!!
When I add the function to functions.php I get a php error
Does it work with bbpress 2.2.2?
No, it works. My fault. I messed up with child functions
function bm_bbp_no_breadcrumb ($param) {
return true;
}
add_filter (‘bbp_no_breadcrumb’, ‘bm_bbp_no_breadcrumb’);
Could any tell me how do I need to use this code? Thank You!