swiftyste Active member Jul 8, 2019 #1 I'm looking to add thread views & thread replies at the top of the thread Does anyone know the code to add this next to the time? Thanks
I'm looking to add thread views & thread replies at the top of the thread Does anyone know the code to add this next to the time? Thanks
swiftyste Active member Jul 10, 2019 #2 I manged to sort it by adding this line of codes within thread_view in templates Thread views: Code: <li><dl class="pairs pairs--inline"> <dt>{{ phrase('views') }}</dt> <dd>{{ number($thread.view_count) }}</dd> </dl></li> You can customize : <dt>{{ phrase('views') }}</dt> to what ever you like just like this: Thread replies: Code: <li><dl class="pairs pairs--inline"> <dt>{{ phrase('Replies') }}</dt> <dd>{{ number($thread.reply_count) }}</dd> </dl></li> This updates on each thread with each change. Upvote 0 Downvote
I manged to sort it by adding this line of codes within thread_view in templates Thread views: Code: <li><dl class="pairs pairs--inline"> <dt>{{ phrase('views') }}</dt> <dd>{{ number($thread.view_count) }}</dd> </dl></li> You can customize : <dt>{{ phrase('views') }}</dt> to what ever you like just like this: Thread replies: Code: <li><dl class="pairs pairs--inline"> <dt>{{ phrase('Replies') }}</dt> <dd>{{ number($thread.reply_count) }}</dd> </dl></li> This updates on each thread with each change.