Cool tuto Courage !!! Thank you !!
I made just an one update for background change if member have 0 rep or negative rep.
I change this:
<div style='background:#0f2437 ;padding: 7px; color: #fff; font-weight: bold'>{$this->memberData['pp_reputation_points']}</div>
To this:
<if test="$this->memberData['pp_reputation_points'] == 0">
<div style='background: #505050 ; padding: 7px; color: #fff; font-weight: bold'>
</if>
<if test="$this->memberData['pp_reputation_points'] > 0">
<div style='background: #8DB13E ; padding: 7px; color: #fff; font-weight: bold'>
</if>
<if test="$this->memberData['pp_reputation_points'] < 0">
<div style='background: #B82929 ; padding: 7px; color: #fff; font-weight: bold'>
</if>
{$this->memberData['pp_reputation_points']}
</div>
Regards