MyBB Community Forums

Full Version: Display Specific template added messages to awaiting users?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Like I want to add a message saying to confirm your email but only for awaiting activation usergroup. How do i make the message to be displayed to this specific group?
By using the Template Conditionals and a IF conditional based on the user's group...

<if $mybb->user['usergroup'] == 5 then>
Enter your content here
</if>
or any of below plugins can be used to display specific messages to selected groups
OUGC Announcement Bars | BAM Announcements Manager

(edited)
(2015-06-18, 06:11 AM)mmadhankumar Wrote: [ -> ]By using the Template Conditionals and a IF conditional based on the user's group...

<if $mybb->user['usergroup'] == 5 then>
Enter your content here
</if>
The code works but how do i configure correctly that the awaiting usergroup can see it? I added my content but its displayed to everyone and even guest.
^ have you installed and activated template conditionals plugin ? it is required