Get rid of the word private in bbpress forums names

AFAIR BBPress relies on WP functions with these titles, so most probably this will be helpful: function remove_private_prefix_from_title( $title ) { return ‘%s’; } add_filter( ‘private_title_format’, ‘remove_private_prefix_from_title’ ); And here you can find docs for that filter: private_title_format

Embed phpBB within WordPress?

There’s no real embedding of another software into wordpress. If you want to visually embed it, then you’d have to take a look if and how phpBB uses templates and then add the same nav to the phpBB templates. The look and feel can be done via css. You’ll have to a) add the same … Read more