XF 2.2 postbit thread count?

Ignite

Member
Does such thing exist? I'm trying to essentially use this:

what i would like to do is something like this:
PHP:
       <xf:if is="$user.reaction_score">
<dl class="pairs pairs--justified">
<dt>Thread/Message Ratio</dt>
<dd>{{ number($user.thread_count/$user.message_count, 2) }}</dd>
</dl>
</xf:if>

is there a way to do this via the postbit?
 
You want the thread count?

I don't believe that's available but you can add this to the template to check {{dump($user)}} .
 
Top Bottom