Skip to main content

Adding Search Scopes to Advanced Search

Search scopes can be defined by the Shared Service Provider administrator and then the site collection administrator can assign these search scopes to groups.

For example, in the following diagram a shared scope called “Exclude Dublin Bus” (don’t ask…) has been defined in the shared service provider, and is included in “Search Dropdown” group:



The “View Scopes” form can be accessed throughthe Site Actions + Modify All Site Settings menu command for the site collection and then selecting “Search Scopes” under “Site Collection Administration”.

This means the search scope is displayed in the scope drop down for search:



To add the same search scope for the “Advanced Search” form you should first add the search scope to the display group “Advanced Search” using the “View Scopes” form shown above.

Next, you need to display search scopes in the “Advanced Search” form. To do this, navigate to the “Advanced Search” form and select Actions + Edit Page. Then select the edit + Modify Shared Web Part menu for the “Advanced Search Box” web part.

Now expand out the “Scopes” property section and select “Show the scope picker”:



Publish the change and the scopes defined for the “Advanced Search” group will be displayed:

Comments

Popular posts from this blog

How to get SPUser or SPGroup from Person or Group field

You have person or group field in SharePoint list and you want to programmatically get the user or person. The below code to gets SPUser from User or Group field in the list when multiple choice and Groups are not allowed in the field: //get SPUser SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValue userFieldValue = (SPFieldUserValue)userField.GetFieldValue(item["Users"].ToString()); SPUser user = userFieldValue.User; This part of code would help you to get SPUser when multiple choice is allowed and groups are not allowed: //Multiple choices are allowed SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValueCollection userFieldValueCollection = (SPFieldUserValueCollection)userField.GetFieldValue(item["Users"].ToString()); foreach (SPFieldUserValue userFieldValue in userFieldValueCollection) {     Console.WriteLine("     " + userFieldValue.User.LoginName); } And when group

SharePoint publishing page scheduling

In SharePoint 2010 publishing enabled team site collection is not showing schedule button in publish ribbon. Solution: Here is how to enable it  though the UI: Locate the SharePoint Server Web site on which you want to enable content approval and item scheduling. Click  Site Actions , click  Site Settings , and then click  Modify Pages Library Settings . Under  General Settings , click  Versioning Settings . Click  Yes  next to  Content Approval , and then click  OK . Click  Manage item scheduling .   Click to enable the  Enable scheduling of items in this list  check box, and then click  OK .

Changing Content Type Hub URL

Change the Hub URL through powershell by using: Set-SPMetadataServiceApplication -Identity " " -HubURI " " For Ex: Set-SPMetadataServiceApplication -Identity "Managed Metadata Service" -HubURI "http://contenttype.Domain.Com" When you try to do this you get this rather scary message: This is SharePoint telling you that this is a major thing so be careful! Essentially all your content types that you have published out will be removed if they can, and you have to republish all of your content types out again which can cause some issue.