Question

I have a content search web part inside my sharepoint 2013 on premises site. The content search web part will show all the sub sites I have inside a site collection .. now everything is working well.. but the problem is that I am unable to sort the sub sites by their Title,, as the sort list inside the content search web part does not contain the Title.. so can any advice on this please??

Était-ce utile?

La solution

The title of a site (the one present on (/_layouts/15/prjsetng.aspx page) resides in a crawled property called ows_SiteName.

You should map it to a RefinableStringxx managed property(see below screen grab) and then click OK.

To do that, go to your Central admin > Manage service applications > Search service application > Search Schema (under queries and results)

enter image description here

Once the mapping is done, do a full crawl of the data source.

After that, you will be able to sort the results based on the site's title property.

You probably can also use another search mapped property called "SiteTitle", no need to create any extra refinableString then ;)

Autres conseils

You can map title to one of the RefinableString, crawl, and sort by that RefinableString

UPDATE

Go to Central admin > Manage service applications > Search service application > Search Schema (under queries and results)

Find one RefinableString (for ex RefinableString00,RefinableString01...), edit property and add one of titles.

You can add ows_SiteName or one of the Title managed property (for ex. Basic:displayTitle). enter image description here

After that you have to recrawl (full crawl).

Then edit your wp and add sorting by RefinableString00 enter image description here

SORTING

Not so many predefined managed properties are sortable, maybe because MS implemented FAST Search with default sortable properties in SP2013.

You could also edit SiteTitle (ows_SiteName managed property) on CA > Manage service applications > Search service application > Search Schema.

Change sortable to Yes-active and recrawl.

On SPO you can't do that, only map to Refinable managed property


Link

Sorting has always been a big deal and highly requested feature in previous versions of SharePoint. You really couldn’t sort by many criteria at all without writing custom code. In SharePoint 2010, FAST Search for SharePoint added sorting capabilities but many people didn’t care to pay for it. Well, now sorting is a first class feature in SharePoint 2013. You can mark managed properties as sortable now and then use them in the search results web part. Note, that you can only do this for properties at the Service Application level.


EDIT 2

You could create new Result Source which would override your sorting on wp.

Go to Site settings>Site Collection Administration>Manage Result Sources Create new, give it name like Sort Site Title, under Query Transform Launch Query Builder and add sorting to your RefinableStringXX ASC.

Edit your CSWP (Content Search Web Part) and select your new result source under Select a query

link

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top