I’ve been searching high and low with no promising leads.
its been right in front of you the whole time!!!! (not yelling , being dramatic)
ya know how the freshness column has a little avatar by the users name. high existence just moved it into an li
and made it bigger.
ha ha…. like most things in my life…ah ok cool… only thing is I’m not seeing the little avatar with my template. maybe the dante template makers edited this out? here is link…
http://caravanguitars.com/forum/
in the original bbpress theme
in loop-single-topic.php your freshness column should have this
the bolded text is what shows the avatar,
to make it bigger just make the number higher
high existence uses 40 , they have border radius css to make it rounded
<li class="bbp-topic-freshness">
<?php do_action( 'bbp_theme_before_topic_freshness_link' ); ?>
<?php bbp_topic_freshness_link(); ?>
<?php do_action( 'bbp_theme_after_topic_freshness_link' ); ?>
<p class="bbp-topic-meta">
<?php do_action( 'bbp_theme_before_topic_freshness_author' ); ?>
<strong><span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 14 ) ); ?></span></strong>
<?php do_action( 'bbp_theme_after_topic_freshness_author' ); ?>
</p>
Thanks Sooooo much RobKK for your response… super clear and works!!