I have a requirement like below: I need to show only sign out or log out link in a SharePoint site. I do not need to show out of box "My Settings" and "Sign in as as Different user" link. Any idea?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted
  1. Take a copy of Welcome.ascx file (under 12 hive\Template\ControlTemplates folder)
  2. Rename it as CustWelcome.ascx
  3. Find the tag with Personalization For Eg: </SharePoint:MenuItemTemplate runat=”server” id=”ID_PersonalInformation”

  4. Change the Visible to false (if visible is missing add it and set it as false)

  5. Now go to the master page and change the reference from welcome.ascx file to CustWelcome.ascx

You could find more details from this post

link|improve this answer
Awesome!! Perfect steps!! Thanks a lot :) – NICK Jan 3 at 10:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.