Skip to content

Instantly share code, notes, and snippets.

@RyanABailey
Created November 10, 2015 06:02
Show Gist options
  • Select an option

  • Save RyanABailey/a63e53e963b51209408a to your computer and use it in GitHub Desktop.

Select an option

Save RyanABailey/a63e53e963b51209408a to your computer and use it in GitHub Desktop.
Sitecore edit custom profile properties
Sitecore.Security.Accounts.User user = Sitecore.Security.Accounts.User.FromName("extranet\Ryan", true);
Sitecore.Security.UserProfile userProfile = user.Profile;
userProfile.SetCustomProperty("Title", "Mr"); // Set the custom property
userProfile.Save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment