×
Search results provided by Azure Search - read how I built it in this post.

// February 2012

Max Melcher

2 minute read

Recently I read a blog post how to customize the core result webpart - thats the webpart showing the results after you do a search with SharePoint 2010. The the output was modified so that you can click on a link to open the library/folder containing the document you searched - quite handy in my eyes. SharePoint Search The solution for SharePoint search is quite easy, just add <xsl:if test="isdocument = 'True'"> <a> <xsl:attribute name="href"> <xsl:value-of select="sitename"/> </xsl:attribute> View Folder </a> </xsl:if> and you are good to go (more details in the mentioned blog post).