Re: Forum tags – I can add them, but can't see them
yes i taken the sidebar code for the heat_map and placed it into a simple widget and will add it to the forum extras plugin (unlike the widget for latest topics and forum index – not dynamic depending on what you are viewing – group, profile, etc)
also a quick snip – if you want to display a a tag listing on your theme group/single/forum/topic.php file; add this code somewhere:
<div id="topic-tags">
<p><?php _e('Tags:'); ?></p>
<?php
$ttags = bb_get_topic_tags( bp_get_the_topic_id() );
if ( $ttags ) : ?>
<?php bb_list_tags( 'topic='. bp_get_the_topic_id() .'tags='.$ttags ); ?>
<?php else : ?>
<p><?php printf(__('No <a href="%s">tags</a> yet.'), bp_get_forum_directory_permalink() . '/#tags' ); ?></p>
<?php endif; ?>
</div>