MyBB Hacks

Full Version: Individual Rank Image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am looking for a plugin like this one.
http://mods.mybb.com/view/user-rank-image

However it adds an option in the edit users part of the ACP where we can assign a individual group image to the user... But if they don't have an individual image assigned, then it uses the default one set to the group they are in.

The reason I am asking for this is because if I have a group... Say 'Developers' but have 4 developers and 1 designer, I ain't going to create a new group just for 1 user, but his job is different.

Thanks,
Do you mean by the 'Rank Image' is usergroup images or userstar image?
I think you can do that with Template Conditional?
Its the stars by their name (user 'stars')
If there is only one user 'use' the custom image, and you want to do that with Template Conditional:

Example for postbit/postbit_classic:

Code:
<if $post['uid'] == x then>
Image for designer here
<else>
Default image here
</if>


Depends on what you mean by the user stars.

Reference URL's