MyBB Community Forums

Full Version: Non Clickable Button For Certain Usergroups
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi to all!
I wonder to know how can i make this:
[Image: FTgKbfv.png]

As you can see the left button is clickable for my usergroup, The next two are not.

How can i do this for certain usergroups?  Any idea?

-Bump! Any one has any idea or code how to do it?
I search everywhere but got nothing. this may be a plugin or a html?
If it is on a self created PHP forum page, then you could use:
<input type="button" value="YOURVALUE" <?php if (is_member('1,7')){ ?> disabled <?php   } ?> onclick="YOURACTION" />

This disables the button for user of usergroup 1 & 7
Sorry but i am a bit new on this! Where i put this?