Did you get it fixed? Everything seems to be functioning right to me.
Thanks for your reply.
Afraid not, the name/title of the forums is “favourite destinations”, when it should be “forums”. Check the link in my post.
I really don’t want to go meddling through the code too much.
Hmm I see what you mean.
I’m not sure where that is coming from. That portion (the heading) is controlled by your theme, not bbPress.
If you switched your theme to TwentyEleven my guess is that the problem would go away.
You will have to look and see if you can find what code the theme is using and it might help track down where this is coming from.
You were right, I tracked down the code that is causing it from the Page Template (page.php) to this line of code:
<h2>
<?php
if(!empty($headline[0]) )
{
echo $headline[0];
}
else
{
the_title();
}
?>
</h2>
I can delete it all to just <h2>Forums</h2>, but then it changes all the page names to Forums.
I realise you don’t support every theme, but do you have any ideas on this? I’m sure its a simple code change.
Thanks again
See what happens when you take out everything in the <?php ?> except the_title();
It seems the_title(); is causing it. I deleted the other lines, and nothing changed in the headings throughout the site. Surely it should pick up as “Forums”. Strange compatibility bug.
Hmm, I don’t know – I can’t replicate the problem on any of my 2.1 installs.