Quote:
Originally Posted by AeonGamer
Thanks. Very helpful
Just wondering. How would I do the same in the postbit legacy template? I tried using the same functions as your code but it looks like it revolves around a different code I think for the postbit templates.
My current Rep code in the postbit template. Which is just for the blobs. I want to have blobs and then the number underneath of it.
Code:
<if condition="$show['reputation']"><tr bgcolor="#ececec"><td align="center" style="border:1px;border-color:#d4d4d4;border-style:double;width:160px;">
It also has this underneath of it. Not sure if its relevant to the blobs though:
Code:
<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></tr></td></if>
Thanks for any help you may give 
|
In Postbit FIND
Code:
<div>
$vbphrase[posts]: $post[posts]
</div>
ADD BELOW
Code:
<div>
Rep: $post[reputation]
</div>
IN postbit_legacy FIND
Code:
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>
ADD BELOW
Code:
<div>
Rep: $post[reputation]
</div>
This variable - $post[reputation] can be used anywhere in the postbit / postbit_legacy template so feel free to alter the layout to suit your needs.
DEMO HERE