Hi,
I installed AAM to manage user roles. However, it keeps displaying “basic options” in the top admin bar, while I set them to hide from the user so he can not access it. It only is hidden in the left admin sidebar.
How can this be removed? Seems this is not hooked.
Is there a function to add in functions.php (I’m running a child theme) to completely remove this from the top admin bar for all users? I never use this shortcut anyway.
Question 2: I have noticed the featured requests are not really well managed. I find it hard to know what current and planned developments are with enfold. Can this be managed again so we have a clear view on future updates and what to expect?
I’m particularly interested in slicker mobile navigation, but haven’t seen any change in 2/3 years eventhough it’s a top 2 request.
Thank you
S
Hey Spiv,
Please add following code to Functions.php file in Appearance > Editor
function remove_adminbar_themeoptions() {
?><style>#wp-admin-bar-avia { display: none !important; }</style>
<?php
}
add_action('init', 'remove_adminbar_themeoptions');
We have forwarded your request to Kriesi :)
Best regards,
Yigit
Thanks!