Quote:
Originally Posted by omardealo
[COLOR="Red"] i think is working , but i have problem ... i want show this code for only moderators but it also Shows for admin No other solution if i don't want to use usegroupid
|
Could you maybe use can_moderate() but check the usergroupid to see if it's an admin? Or maybe you could use:
Code:
<if condition="can_moderate() AND !($vbulletin->userinfo['permissions']['adminpermissions'] & $vbulletin->bf_ugp_adminpermissions['cancontrolpanel'])">
(assuming you're checking the "current" user and not a post author). That will make it so it doesn't show to anyone who has admincp permissions (I think).
Otherwise, you can write a plugin to do whatever checks you want and set a variable.