PDA

View Full Version : [QUESTION] USERCP Template


dailyyeah
12-10-2008, 07:44 AM
How can I delete event reminder, or prevent from showing, for a specific user groups' control panel?

http://www.vbulletin.com/docs/html/color_maps_usercp

For instance, registered usergroups will not have event reminder displaying in their control panel.

Lynne
12-10-2008, 02:31 PM
You'll have to put a condition around it in the USERCP_SHELL template:
<if condition="is_member_of($bbuserinfo, 5, 6, 7)"><tr><td class="$navclass[event_reminders]" nowrap="nowrap"><a class="smallfont" href="calendar.php?$session[sessionurl]do=viewreminder">$vbphrase[event_reminders]</a></td></tr></if>

Usergroup ids 5,6,and 7 are the mods and admin. Change those as you see fit.

dailyyeah
12-10-2008, 07:39 PM
thanks! I appreciate the help :)