Nov 25, 2024 1:15 am
I tried asking on the Gvectors site since I am a paying member, but no one responded and now their site is currently down (oof). In wpDiscuzz, they have a feature that lets you choose to list the number of likes next to the like button under each comment. Why such a common feature isn't included in wpForo, is beyond me. Has anyone succeeded in accomplishing this... or am I missing something?
2 Replies
Nov 25, 2024 8:48 am
Hi @trey
check out the new wpForo - Advanced Reactions addon
or if you have knowledge in php, you can also edit the Template.php
modules > reactions > classes > Template.php
the code for the count looks like this
'. WPF()->reaction->get_post_reactions_count( $postid ).'
or with css class to customize
<span class="post_reactions_count"> '. WPF()->reaction->get_post_reactions_count( $postid ).'</span>