Re: Showing more tags on Heatmap.
I found it. It was in the sidebar.php file. What do I need to change in the code below to control the number of tags shown in the heat map?
Thank you.
<div id="sidebar" class="right">
<div class="menu">
<?php
login_form();
if(is_bb_profile()) profile_menu();
?>
</div>
<div class="menu">
<h2 class="section-header"><?php _e('Tags','rag'); ?></h2>
<p class="frontpageheatmap" style="text-align: center;"><?php bb_tag_heat_map(); ?></p>
</div>
<?php if(bb_is_user_logged_in()) : ?>
<div class="menu">
<h2 class="section-header"><?php _e('Views','rag'); ?></h2>
<ul id="views">
<?php foreach(bb_get_views() as $the_view => $title) : ?>
<li class="view"><a href="<?php view_link($the_view); ?>"><?php view_name($the_view); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
</div>