Yeah, sorry maybe I should've specified it better, I meant the total reactions on the first postI'm not an expert... but I don't believe it's easily possible. "Total reaction score" for a thread doesn't appear to be saved anywhere. You'd have to calculate it somehow and save it.
"First Post Reaction Score" is available though. If u want to use that.
{$thread.first_post_reaction_score} will display that in template:thread_list_macros
<div class="structItem-cell structItem-cell--meta" title="{{ phrase('first_message_reaction_score:')|for_attr }} {$thread.first_post_reaction_score|number}">
<dl class="pairs pairs--justified">
<dt>{{ phrase('replies') }}</dt>
<dd>{{ $thread.discussion_type == 'redirect' ? '–' : $thread.reply_count|number_short }}</dd>
</dl>
<dl class="pairs pairs--justified structItem-minor">
<dt>{{ phrase('views') }}</dt>
<dd>{{ $thread.discussion_type == 'redirect' ? '–' : ($thread.view_count > $thread.reply_count ? $thread.view_count|number_short : number_short($thread.reply_count+1)) }}</dd>
</dl>
</div>
We use essential cookies to make this site work, and optional cookies to enhance your experience.