Hide Sign-In Link on the SPSites Except Admin Page
Did you want to hide the sign-in link on your SharePoint sites?
All you need to do is to locate the following code in your master page and hide or remove the tag:
Step 1:
<wssuc:welcome id=”wc” runat=”server” EnableViewState=”false”></wssuc:welcome>
This will hide the whole Welcome Panel when the page is displayed in the web browser. Do not remove the welcome.ascx control from the Controltemplate folder.
The welcome menu is part of the link itself. It’s a whole functionality which is contained in welcome.ascx. So if you remove that, you will lose the menu too.
Step 2:
Create the ASPX for an admin user called adminlogin.aspx
Place the following code in the ASPX page
<wssuc:welcome id=”wc” runat=”server” EnableViewState=”false”></wssuc:welcome>
The “Sign In” link available in the top-right corner of the Sharepoint site except
the admin page.