Sort the search results on the member search by a custom field

Can the search results on the member search page be sorted by an ExtendedAttributes or ProfileFields field?

Parents Reply
  • I know how to write a widget extension, will I be able to access the extendedattributes of a user object in C#?  What would I pass into the widget extension? Is it the search results list returned from this statement? 

    #set ($searchResults = $core_v2_searchResult.List($searchListOptions))

    #foreach ($result in $searchResults)
    	#set ($user = false)
    	#foreach ($resultUser in $result.Users)
    		#set ($user = $resultUser)
    	#end

Children