Quote:
Originally Posted by Keith78
thats perfect.. i want all users to be able to view the garage, but only a certain 3 usergroups to be able to create a garage...
can you give me more details on how you did this??
|
Quote:
Originally Posted by Yellow-06-GT
Me too! 
|
Sorry for my late answer,
but here is the code you need:
Template => USERCP_SHELL
Find:
Code:
<td class="$navclass[event_reminders]"
and set above this code the following:
Code:
<if condition="is_member_of($bbuserinfo,w, x, y, z)">
<tr>
<td class="$navclass[options]" nowrap="nowrap"><a class="smallfont" href="$vboptions[bburl]/vbgarage.php?do=view&id=$bbuserinfo[userid]">$vbphrase[vbgarage_show]</a></td>
<tr/>
<tr>
<td class="$navclass[options]" nowrap="nowrap"><a class="smallfont" href="vbgarage.php?$session[sessionurl]do=editgarage">$vbphrase[vbgarage_edit]</a></td>
<tr/>
</if>
Replace the "w,x,y,z" by the usergroup-id's wich you will allow to create an own garage!
The link to create a garage will be shown in the usercp.
You can put the code in any template you want to appear the link, for example in the navbar.
kr chris