Are you using phpBB version? If yes, go to
- Code:
CP > Display > Templates > viewtopic_body |
After that, find
- Code:
{postrow.displayed.POSTER_RANK} |
and replace it to look like this:
- Code:
<span class="customRank">{postrow.displayed.POSTER_RANK}</span> |
Save that and approve. After that go to:
- Code:
CP > Modules > Javascript |
and make a new script. Name it whatever suits best for you and paste this:
- Code:
var totalPosts = $(".customRank").length;
for (i = 0; i < totalPosts; i++) {
temp = $(".customRank").html();
if (temp == "Gast") {
$(".customRank").replaceWith('<img src="https://i.servimg.com/u/f44/11/48/74/42/0_star10.gif">');
}
}
Let me know if that works for you. Oh yes, save script and apply in the topics.