Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Question about Integration


buddha-trance
Member

@buddha-trance

I believe that the issue was the reverse, that is: how to add the blog menu onto the forum.

If this is the case – the way I have done it – you edit header.php of your forum theme and add the menu tabs there, to match the ones of your blog. Make sure it is a custom theme and add it to my-templates folder, or you will lose it when you upgrade bbPress next time (if left as the default Kakumei).

Just after

<div id="header" role="banner">

you add the html for the tabs (for id “navigation” add it to the style sheet). For example:

<div id="header" role="banner">
<ul id="navigation">
<li><a href="blog url" title="Main Blog">Blog</a></li>
<li><a href="forum url" title="Forums">Forums</a></li>
<li><a href="another page url" title="Whatever Page">Whatever Page</a></li>
<li><a href="contact page url" title="Contact Me">Contact Me</a></li>
<li><a href="about page url" title="About">About</a></li>
</ul>
</div>

Hope this helps.

Skip to toolbar