Is there a way to remove the Admin button from the Admin Toolbox but leave the logout button for Standard Users. The issue is that a Standard User could reset their password and mess up the login for other Standard Users that use the same account. If not how would I remove the Admin Toolbox from showing up for Standard Users?
Comments
You will have to make your own custom function if you wish different functionality.
But as acrylian says, this is no protection. If you allow users to share a usercode they can mess with eachother. Better to use the gallery "guest" logon for this type of access. You can set that up with a user id and password so that these users will not be able to tell the difference other than that they cannot access the back-end.
thanks in advance
`
if (zp_loggedin(ADMIN_RIGHTS) {
printAdminToolbox();
}
`
it's now working perfectly!!!