Quote:
Originally Posted by Shinobi
i wish it were that easy, this is what my legacy has:
<if condition="$show['reputation']"><div><if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower]</if>$post[reputationdisplay]</div></if>
|
Try replacing that code with this ;
HTML Code:
<if condition="$show['reputation']">
<div>
<if condition="$post['reputation'] < 0">
Bad Rep : <if condition="$show['reppower']">$vbphrase[reppower] : $post[reppower]</if> $post[reputationdisplay]
<else />
Good Rep : <if condition="$show['reppower']">$vbphrase[reppower] : $post[reppower]</if> $post[reputationdisplay]
</if>
</div>
</if>