MyBB Community Forums

Full Version: Display premium membership group on profile.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I wanted to show two usergroups on user's profile.
Primary user group: Registered User
Another Group: "Premium member"
So if the user is part of premium a particular Member group, display that as well when they make posts and on profile page, is this possible by template edit?
Hello,thanks for the reply, I would also like know whether this is possible by template edit?
Not without another plugin, Template Conditionals: http://mybbhacks.zingaburga.com/showthread.php?tid=464 Download it and upload both .txt and .php file, activate. Then add to member_profile template:
<if in_array(3, explode(',', $memprofile['additionalgroups'])) then>
This user is a premium member
</if>
Change 3 to premium group ID.
this sound very good, I will try this, thanks