For our application we didn't want the warning / yellow exclamation to appear on user Profile Pages. As described on this page, to remove the exclamation you need to,
- Log into the front-end server
- Navigate to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\LAYOUTS\
- Backup the editprofile.aspx
- Edit the editprofile.aspx and do a search for
SPSWC:ProfileEditor id="ProfileEditor" id="ProfileEditor" runat="server"
- You need to add
ShowWarningIcon="False"
into that sepcific tag so that it looks like this:SPSWC:ProfileEditor id="ProfileEditor" id="ProfileEditor" ShowWarningIcon="False" runat="server"
- Save
No comments:
Post a Comment