adding reputation and post count in topic view
-
May someone please assist me with the coding to add reputation and post count in the topic view? I added this code, not correct as i'm a novice, in post.tpl in partials:
<span class="userinfo-extra"> <i class="fa fa-star"></i> <span component="user/reputation" data-reputation="{reputation}" data-uid="{posts.user.uid}" class="formatted-number reputation">{reputation}</span> | <i class="fa fa-pencil"></i> <span class="formatted-number" component="user/postcount" data-uid="{posts.user.uid}" data-postcount="{postcount}">{postcount}</span> </span>
However it does not work properly as you can see in the image below. I got this by looking at someone else's site.
-
@torn2 try this
<span class="userinfo-extra"> <i class="fa fa-star"></i> <span component="user/reputation" data-reputation="{posts.user.reputation}" data-uid="{posts.user.uid}" class="formatted-number reputation">{posts.user.reputation}</span> | <i class="fa fa-pencil"></i> <span class="formatted-number" component="user/postcount" data-uid="{posts.user.uid}" data-postcount="{posts.user.postcount}">{posts.user.postcount}</span> </span>
Copyright © 2024 NodeBB | Contributors