Hi Bem,
Some plugins can override the typical display in the admin bar. Unfortunately our plugin for technical reasons can’t override this custom code done in those other plugins. However with custom admin CSS (which is a feature of our plugin) you can still hide these items. For instance the following CSS can be used to hide Updraft from the toolbar:
#wp-admin-bar-updraft_admin_node {
display: none !important;
}
So you just need to get the ID of the list item in the toolbar which can be retrieved using your browsers developer tools/DOM inspector and then use our custom admin CSS to hide that ID like in the above code sample.
With the pro version of the plugin we provide even better controls of admin CSS, so you can apply the admin CSS to particular users or roles. To learn more about the pro version of the plugin, please see this link: https://northernbeacheswebsites.com.au/custom-admin-interface-pro/
Thanks Bem,