I meant just update it with each user that i dont want to see the link?
Actually i have just tried this and the user in question can still see and click the link
heres what i have in the template
Code:
<if condition="$show['moderator_app_links']" <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/modapp.php?$session[sessionurl]">Apply To Be A Mod</a></td></tr></if>
and the plugin i only changed the user ID to 9
Code:
$moderator_usergroups = array(5, 6, 7);
$moderator_users = array(9);
$show['moderator_app_links'] = (
is_member_of($vbulletin->userinfo, $moderator_usergroups) or
in_array($vbulletin->userinfo['userid'], $moderator_users)
);
Ah....just realised, this is the wrong way round, where i have user ID 9 this is the user ID that i DONT want to be able to see the link, allthe rest can see, but as it is atm is that is the only user apart from the staff that can see it lol
What do i do to turn it round please?