Wednesday, June 16, 2010

Remove warning / yellow exclamation on profile pages

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,

  1. Log into the front-end server
  2. Navigate to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\LAYOUTS\
  3. Backup the editprofile.aspx
  4. Edit the editprofile.aspx and do a search for SPSWC:ProfileEditor id="ProfileEditor" id="ProfileEditor" runat="server"
  5. 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"
  6. Save

No comments:

Post a Comment