vForums Support > Programming & Coding :: Database of Codes/Hacks/Mods :: > Show Staff Image Only

Show Staff Image Only - Posted By Michael (wrighty) on 3rd Apr 08 at 5:27pm
Ok. So when you're in the mini-profile this code will make it so that only the staff's image shows. The text for that rank wont display at all!

It wont affect the members! {Smile}

Go to:
Image => Mini-Profile Template
Where you have {rank} or something like that.

Put this instead:

<script>
var a = /(Administrator|Moderator|Global Moderator)/;
var rank = '{rank_name}';
if(rank.match(a)){
    document.write('{rank_image}');
}else{
    document.write('{rank}');
}
</script>



Edit the red part with the 'staff ranks'.

To add more add another line ( | ) then the name of the rank. That should then do what you want! {Smile}