Please share any images or screenshots, if relevant.
Share all details related to your problem, including any error messages you may have received.
Hello,
We want to remove “Preferences” menu item for nearly all users, we only want to be visible for people in a specific workgroup and manageres (but we can arrange managers to the same group)
Thanks for the answers. We will go with the plugin with jquery. Do you have any sample or training how to create plugin for frontend modification with jquery?
$(document).ready(function() {
$('ul.dropdown-menu > li > a[href="/identityiq/dashboard/identityPreferences.jsf"]').parent().hide();
});
I used browser developer option(press F12) to execute above code. You can write a logic to make a Rest call and fetch the current login user and based on that you can hide the Preferences button.
If the requirement is hiding the preferences button then above implementation will work.
Otherwise If user already bookmarked the preferences URL, then you may need to write some logic to handle or hide the entire forwarding block in preferences page. (like below details)