--- title: Manage fields for a specific index slug: '2379' canonical_url: https://docs.coveo.com/en/2379/ collection: coveo-for-sitecore-v5 source_format: adoc --- # Manage fields for a specific index Instead of changing the setting of a field for all indexes, you can manage the setting of a field for a specific Coveo index. > **Note** > > Field settings defined in the `defaultIndexConfiguration` element are applied to all indexes. > However, you can override these settings at the index level (see [Removing or replacing field settings](#removing-or-replacing-field-settings)). For example, to add a field configuration specifically for the `Coveo_master_index` index, edit the Coveo Search Provider configuration as follows. . Open your `Coveo.SearchProvider.Custom.config` file with a text editor. . Inside your `sitecore` node, add the code below. Fields must be added in a `` element. Replace `mysitecorefield` with the name of your Sitecore field. . Add the `isSourceSpecific` setting and set the value to `true`. This is required to create a unique name for this field (see [Handling duplicate field names between indexes](https://docs.coveo.com/en/2551#handling-duplicate-field-names-between-indexes)). . Add the setting of your choice. In this example, the `isFacet` setting is set to `true` to allow facet search on this field. ```xml ``` ## Removing or replacing field settings Because all field settings defined in the `defaultIndexConfiguration` are applied to all Coveo indexes, remove and replace methods have been implemented to allow you to remove specific field settings or to replace the entire list of field settings for a specific Coveo index. The following are sections you may add in the `Coveo.SearchProvider.Custom.config` file and their usage. * `indexes/index[id='']/configuration/fieldMap/fieldNames[hint='raw:RemoveFieldByFieldName']` This section is used to remove Sitecore fields from the default list for a specific Coveo index. * `indexes/index[id='']/configuration/fieldMap/fieldNames[hint='raw:ReplaceFieldByFieldName']` This section is used to completely replace the Sitecore fields from the default list for a specific Coveo index. * `indexes/index[id='']/configuration/fieldMap/externalFields[hint='raw:RemoveExternalField']` This section is used to remove external fields from the default list for a specific Coveo index. * `indexes/index[id='']/configuration/fieldMap/externalFields[hint='raw:ReplaceExternalField']` This section is used to completely replace the external fields from the default list for a specific Coveo index. * `indexes/index[id='']/configuration/fields[hint='raw:RemoveComputedIndexField']` This section is used to remove computed fields from the default list for a specific Coveo index. * `indexes/index[id='']/configuration/fields[hint='raw:ReplaceComputedIndexField']` This section is used to completely replace the computed fields from the default list for a specific Coveo index.