Not work, show a blank page
This is my code:
<li class='uip'>
<span class='leftinfo'>Reputation:</span>
<span class='rightinfo'><if test="cardRep:|:$this->settings['reputation_enabled'] && $this->settings['reputation_show_profile']">
<div class="reputation-bg" data-tooltip="{parse expression="$author['author_reputation']['text']"}">
<div class="fc reputation-bar
<!-- GREY BAR -->
<if test="$author['pp_reputation_points'] == 0">gray</if>
<!-- /GREY BAR -->
<!-- RED BARS -->
<if test="$author['pp_reputation_points'] < 0">red</if>
<!-- /RED BAR -->
<!-- GREEN BARS -->
<if test="$author['pp_reputation_points'] > 0">green</if>
<!-- /GREEN BARS -->
<!-- GOLD BARS -->
<if test="$author['pp_reputation_points'] >= 500">green</if>
<!-- /GOLD BARS -->
">
{$author['pp_reputation_points']}
</div>
</div>
</if>
<!-- /REPUTATION BAR -->
</div></span>
</li>
CSS:
/* Reputation in post info */
.reputation-bg {
}
.reputation-bar {
font: 12px;
color: #fff;
height: 12px;
margin: 0px;
text-align: center;
}
.reputation-bar.gray { background:#6a6a6a; border-radius: 3px; padding: 0 5px; }
.reputation-bar.red { background:#b82929; border-radius: 3px; padding: 0 5px; }
.reputation-bar.green { background:#8db13e; border-radius: 3px; padding: 0 5px; }
Work's great but dont show reputation icon, how do I get it to appear? Thanks!