I am using ipb 3.4 (latest)
In the link above, I am using the code that was made by the user to show reputation on the userpane. I have two questions.
1. The code I copied is not working correctly when I am trying to display the star icon when a user has 500 or more posts. The code I am using on the userinfopane for rep is:
At the bottom, you will see my code for reputation. I replaced
<if test="$author['pp_reputation_points'] >= 500">green</if>
with
<if test="$author['pp_reputation_points'] >= 500"><img src="{style_images_url}/star.png" /></if>{$author['pp_reputation_points']}
and it output this error:
It does not display the star icon, even when I remove the duplicated reputation_points statement at the end of the codeline above this. I am simply trying to make it display the rep with the small star next to it when your above 500 rep..
Thanks