Adding Post Count To Template

Nutsnack

New Member
Hey, I'm using a template currently that doesn't have post count below the username inside of topics. I'm wondering what the code is and also which file I would insert it into to be able to have it seen on all posts. If anyone can help me with this I'll be ecstatic. Thanks!
 
edit in postbit or postbit_legacy:

Just place it where you want to place:

Code:
$vbphrase[posts]: $post[posts]
 
I don't want to sound greedy, but I have another thing that wasn't included that I would like to add. I need some way to add the reputation graphics and also the ability to give out reputation in posts as well. Do you or anyone else know the code for that? Again sorry if I sound greedy.
 
here you go:

edit postbit and postbit_legacy template

Code:
<if condition="$show['reputation']"><div><if condition="$show['reppower']">$vbphrase[reppower]: <span id="reppower_$post[postid]_$post[userid]">$post[reppower]</span> </if><span id="repdisplay_$post[postid]_$post[userid]">$post[reputationdisplay]</span></div></if>
 
Back
Top