Thursday, February 6, 2014

How to hide the "My Settings" and "Personalize this page" menu items.

i want to hide "my settings" and "personalize this page" items in welcome control for a particular group of users.

Solution:

find group permission level and then

Using site setting:

Go to site settings --> Permissions --> Permission Levels --> Click on group's permission level and uncheck the bellow two check boxes under personal permissions.
1.  Manage Personal Views  -  Create, change, and delete personal views of lists.
2.  Update Personal Web Parts  -  Update Web Parts to display personalized information.

it might be difficult to go to every permission level and uncheck the above two options.
we can also hide  using jquery

Using JQuery:

<script type="text/javascript">
$(document).ready(function(){
$("[text='My Settings']").remove();
$("[text='Personalize this Page']").remove();
$("[text='About Me']").remove();
});
</script>




No comments:

Post a Comment