Re: The buddybar is showing on the forums page onfthis site; how do we do it?
to Jfcarter
we have the same problem – but i think after reading the post replies here and trying to analyze everything i realized and was able to bring what you MIGHT like to see in your forum section ..
use the bb default template in folder bb-templates
kakumei
bb-config.php
put code below
require_once( $_SERVER[‘DOCUMENT_ROOT’] . ‘/wp-load.php’ );
in the header.php that you mentioned include the get_header
this is how buddypress template files using bphome in your wp-content/themes
instead of using <?php wp_head() ?> use the one below
<?php get_header(); ?>
<div id=”search-login-bar”>
<?php bp_search_form() ?>
<?php bp_login_bar() ?>
<div class=”clear”></div>
</div>
it works for me but i have to edit more on the templates