This was exactly what I was looking for. Thank you for posting your solutions.
Sam
Yep thats right. It is in the file archive-forums.php
Look for the line:
<h1 class=”entry-title”><?php bbp_forum_archive_title(); ?></h1>
Simply add the new name in the brackets e.g.
<h1 class=”entry-title”><?php bbp_forum_archive_title(‘New Name’); ?></h1>
It would be nice if there was an option in the admin to change the name of Forum. Maybe one day!
Sam
Here you go:
add_filter(‘bbp_get_forum_archive_title’, ‘forum_title’);
function forum_title() {
return ‘Noticeboard’;
}
Replace Noticeboard with any term you would like to change Forums to.
Thanks for your reply varsitysmack, however that only changes the URL. It doesn’t change the H1 title on screen, or the breadcrumbs.
I ended up moving the bbpress files into the main theme directory and editing those. I also added a filter into my functions file to change the breadcrumbs.
It still seems like overkill, but it’s working for now.
Thanks,
Sam