PDA

View Full Version : How Do I: Add Member Page tabs


MatiasCandy
07-29-2011, 03:31 AM
When you go to your member page you see the tabs at the top for Visitor messages, About Me Friends etc.

How can I add one for just one group?

I want to add a tab and page for say moderators. Anyone know where to get this info OR know a simple way to do this?

Thanks

kh99
07-29-2011, 10:47 AM
Here's an article on adding a tab: https://vborg.vbsupport.ru/showthread.php?t=265971 . If you want it to show up for only one group you could probably enclose the code in an "if" statement like:

if (is_member_of($vbulletin->userinfo, G))
{
// code to add tab
}


(of course you'd change the 'G' to the group id you want).