PDA

View Full Version : Making a quick link option available to certain usergroup only...


JayEss
10-13-2007, 06:42 AM
Hi all,

I would like to know how to make a certain quick link item available only to a certain usergroup... which part of the code would I need to amend, and is this even possible?

Thanks!

Dismounted
10-13-2007, 07:16 AM
At the bottom of the navbar template, you'll find the code for the popup. Simply wrap the link in this conditional.
<if condition="is_member_of($vbulletin->userinfo, X)">
Change "X" to the id of the usergroup.

JayEss
10-13-2007, 08:07 AM
Thank you!