Re: Link header image to WordPress
Just edit the link in header.php in your template folder to point it to your WordPress home page, rather than the bbPress home page.
So instead of this:
<a href="<?php bb_uri(); ?>"><?php bb_option('name'); ?></a>
You would have something like this:
<a href="http://www.example.com/home/">WordPress Home</a>