Re: need a ‘button’ in the bar
You mean adding a link to your form in the theme? Create a file called smf-link.php and put the following in it (changing it to the smf install):
<?php
function add_forum_link() {
echo '<li><a href="http://yourdomain.com/your-smf-url.php">Forums</a></li>';
}
add_action( 'bp_nav_items', 'add_forum_link' );
?>
Trent