Question

Environment:
SharePoint 2010

Part-A:

Is it possible change the user profile property order across the sections?

Let's say
1. We have a custom property group called "custom group"
2. It has the property "XYZ"
3. Is it possible place the property "XYZ" in the middle of the "Details" section?

Part-B:

I have created a new custom user profile property called "XYZ" and wants to display this under the Details section instead of under its own section name ("Custom Property") is on the editprofile.aspx page.

Is it possible? If so, how?

Part-C:

How to create a new property under the "Details" section?

Was it helpful?

Solution

In the "Manage User Properties" of the page, there are arrows to move a property up and down and even change the sections. I quickly tested it and it works!

OTHER TIPS

In SharePoint 2010, there is a tool helping to move those properties http://mossprofileordering.codeplex.com/

In SharePoint 2013 it can be done with powershell, since ordering via UI always gets stuck with "Picture Placeholder State" property

$MySite = Get-SPSite [MySiteHostURL]
$context = Get-SPServiceContext $MySite
$profileManager = New-Object Microsoft.Office.Server.UserProfiles.UserProfileManager($context)
#check current order numbers
$profilemanager.properties | ft name,displayorder

# set an order number for property, which does not yet exist
$profileManager.Properties.SetDisplayOrderByPropertyName(“CustomProperty”,30)
$profileManager.Properties.CommitDisplayOrder()

http://www.sharepointfire.com/MyBlog/2014/02/moving-user-properties-up-in-sharepoint-with-powershell/

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top