Try making a single sidebar eg sidebar-bbpress.php
and call that from your bbpress.php
file and use bbPress conditionals
bbPress Conditional Tags
eg
<?php if ( bbp_is_single_forum() || bbp_is_single_topic() || bbp_is_single_reply() ) : ?>
...primary sidebar code here...
<?php else : ?>
...secondary sidebar code here...
<?php endif; ?>
Great suggestion, thanks! I love conditionals…