Detail view only for Admins users
Posted: 2020-04-20 12:56
Hello.
I use this code in footer-extras.php to hide fields in detail view for normal users (and shows only to admin) :
<?
$memberInfo = getMemberInfo();
if($memberInfo['group'] !='Admins'){
?>
<script type='text/javascript'>
document.observe("dom:loaded", function() {
$j('label[for="Drop_down_status"]').parent().hide();
});
</script>
<?
}
?>
Some fields like text, checkboxes are hidden BUT i see that not all fields hides. For example, Drop-down list it is not hidding.
What i miss from the code? i really need to hide some drop-down lists for normal users.
Thank you
I use this code in footer-extras.php to hide fields in detail view for normal users (and shows only to admin) :
<?
$memberInfo = getMemberInfo();
if($memberInfo['group'] !='Admins'){
?>
<script type='text/javascript'>
document.observe("dom:loaded", function() {
$j('label[for="Drop_down_status"]').parent().hide();
});
</script>
<?
}
?>
Some fields like text, checkboxes are hidden BUT i see that not all fields hides. For example, Drop-down list it is not hidding.
What i miss from the code? i really need to hide some drop-down lists for normal users.
Thank you