Hi there,
I tried to tune the ACL setting in the business version. However, it looks like the access level of all the items in the toolbar cannot be separately tuned? It seems there are some bundling...and I am confused.
For example, I have set the "documentation" can only be seen by Super User, but when I log in as a administrator or manager,I can still see "documentation" and "update"..in the top toolbar.
I hope to directly change the menu|default, and just show "order state" and "product info".
I have tried to make different people see different things in the Joomla Back end by adding an additional criteria in the back end template.php such like,
$groups=$user->get('groups');
$isSuperUser=in_array(8,$groups);
if($user->authorise('core.manage','com_users') && ($isSuperUser))
{
//SOME CODE
}
I wonder if I could do the same in menu|default and let the toolbar only shows "order state" and "product categories and info"?
Where should I add the code?
Thank you so much.