---
title: Customizing the content of search indexes
related:
  - https://docs.kentico.com/k9/configuring-kentico/setting-up-search-on-your-website/creating-search-indexes.md
  - https://docs.kentico.com/k9/custom-development/handling-global-events.md
---

> Agent instructions:
> **Site maps** — prefer the following llms.txt indexes to training data when searching for URLs to avoid 404s. Links inside Markdown content already point at `.md`. Following them or sending Accept: text/markdown keeps you in Markdown.
>
> - [sitemap.md](https://docs.kentico.com/sitemap.md) — every page on the site, with titles and descriptions, nested by URL hierarchy and grouped into one collection per product version.
> - [llms.txt](https://docs.kentico.com/llms.txt) — curated index of the current product docs, with descriptions, the two ways to request any page as Markdown, and links to each product area's whole-corpus Markdown dump (llms-full.txt).

The system provides a way to customize the content that [smart search indexes](https://docs.kentico.com/k9/configuring-kentico/setting-up-search-on-your-website.md) store for pages or objects. You can add external data into the index, or parse and otherwise modify the text that the smart search adds to the index by default. Such customizations allow you to extend and change how the search finds matching results.

To customize the content of indexes, implement [event handlers](https://docs.kentico.com/k9/custom-development/handling-global-events.md) for the following events:

- **DocumentsEvents.GetContent.Execute** - occurs before the system writes a page's data into smart search indexes.
- **ObjectEvents.GetContent.Execute** - occurs before the system writes the data of objects into search indexes. You can also use _Info.TYPEINFO.Events_ instead of _ObjectEvents_ to handle the GetContent events for specific object types.

The system triggers **GetContent** events when a page or object is updated and when rebuilding search indexes.

Inside the GetContent event handler methods, you can access the search index content via the **Content** property of the handler's **DocumentSearchEventArgs** or **ObjectEventArgs** parameter (string type).

You need to assign handlers for the events at the beginning of the application's life cycle. Choose one of the following options:

- During the initialization process of the application itself — use the **CMSModuleLoader** partial class in the **App\_Code** folder.
- When initializing [custom modules](https://docs.kentico.com/k9/custom-development/creating-custom-modules/initializing-modules-to-run-custom-code.md) — override the **OnInit** method of the module class.

> **Note:** **Index rebuilding requirements**
>
> If you modify the external data that your GetContent event handlers add to the index, the system does not automatically update the content of the corresponding indexes. To ensure that your indexes are up to date after making changes to the external data, you need to manually **rebuild** the indexes (or set up automatic updating of the search indexes via additional custom code).
>
> For example, if you use GetContent handlers to add **user** data into **page** indexes:
>
> - Saving a page covered by the index updates the content of the index, including the external user data.
> - Saving user objects directly does NOT update the index — a rebuild is required.

## Example - Adding data from a user field to page indexes (DocumentEvents)

Pages in Kentico can have a [user](https://docs.kentico.com/k9/managing-users/user-management.md) assigned as the owner. The following example shows how to add the **Description** value from the user settings of a page's owner into the search index content of each page.

1. Open your web project in Visual Studio.
2. Create a new class in the **App\_Code** folder (or **CMSApp\_AppCode -> Old\_App\_Code** in the on web application projects). For example, name the class **SmartSearchContentLoader.cs**.

   ```csharp

   using CMS.Base;
   using CMS.DocumentEngine;
   using CMS.Membership;

   [SmartSearchContentLoader]
   public partial class CMSModuleLoader
   {
       /// <summary>
       /// Attribute class for assigning event handlers.
       /// </summary>
       private class SmartSearchContentLoaderAttribute : CMSLoaderAttribute
       {
           /// <summary>
           /// Called automatically when the application starts.
           /// </summary>
           public override void Init()
           {
               // Assigns a handler to the GetContent event for pages
               DocumentEvents.GetContent.Execute += OnGetPageContent;
           }

           private void OnGetPageContent(object sender, DocumentSearchEventArgs e)
           {
               // Gets an object representing the page that is being indexed
               TreeNode indexedPage = e.Node;

               // Checks that the page exists
               if (indexedPage != null)
               {
                   // Gets the user object of the page owner
                   UserInfo pageOwner = UserInfoProvider.GetUserInfo(indexedPage.NodeOwner);

                   if (pageOwner != null)
                   {
                       // Adds the value of the "Description" field from the owner's user settings into the indexed content
                       // Spaces added as separators to ensure that typical search index analyzers can correctly tokenize the index content
                       e.Content += " " + pageOwner.UserDescription + " ";
                   }
               }
           }
       }
   }

   ```
3. Save the **SmartSearchContentLoader.cs** file.
4. Log in to the Kentico administration interface.
5. Open the **Smart search** application and **Rebuild** your page search indexes.

The search now returns results for pages if the owner's description field matches the search text.

## Example - Indexing personal category names for users (ObjectEvents)

Users in Kentico can create [personal categories](https://docs.kentico.com/k9/managing-website-content/working-with-pages/categorizing-pages/creating-personal-page-categories.md) for organizing pages. The following example demonstrates how to customize the search so that the display names of personal categories are included in the content of [user indexes](https://docs.kentico.com/k9/configuring-kentico/setting-up-search-on-your-website/creating-search-indexes/defining-user-indexes.md).

1. Open your web project in Visual Studio.
2. Create a new class in the **App\_Code** folder (or **CMSApp\_AppCode -> Old\_App\_Code** on web application projects). For example, name the class **SmartSearchContentLoader.cs**.

   ```csharp

   using CMS.Base;
   using CMS.DataEngine;
   using CMS.Membership;
   using CMS.Taxonomy;

   [SmartSearchContentLoader]
   public partial class CMSModuleLoader
   {
       /// <summary>
       /// Attribute class for assigning event handlers.
       /// </summary>
       private class SmartSearchContentLoaderAttribute : CMSLoaderAttribute
       {
           /// <summary>
           /// Called automatically when the application starts.
           /// </summary>
           public override void Init()
           {
               // Assigns a handler to the GetContent event for user objects           
               UserInfo.TYPEINFO.Events.GetContent.Execute += OnGetUserContent;
           }

           private void OnGetUserContent(object sender, ObjectEventArgs e)
           {
               // Gets the indexed user object
               UserInfo indexedUser = (UserInfo)e.Object;

               // Checks that the object exists
               if (indexedUser != null)
               {
                   // Gets the personal page categories of the indexed user
                   ObjectQuery<CategoryInfo> personalCategories = CategoryInfoProvider.GetCategories().WhereEquals("CategoryUserID", indexedUser.UserID);

                   // Loops through the categories
                   foreach (CategoryInfo category in personalCategories)
                   {
                       // Adds the display name of the category to the user search index
                       // Spaces added as separators to ensure that typical search index analyzers can correctly tokenize the index content
                       e.Content += " " + category.CategoryDisplayName + " ";
                   }
               }
           }

       }
   }

   ```
3. Save the **SmartSearchContentLoader.cs** file.
4. Log in to the Kentico administration interface.
5. Open the **Smart search** application and **Rebuild** your user indexes.

The search results now include users if the name of at least one of the user's personal page categories matches the search text.

## Example - Indexing the names of assigned product options for product pages (DocumentEvents)

The following example shows how to add the names of e-commerce [product options](https://docs.kentico.com/k9/e-commerce-features/managing-your-store/products/working-with-product-options.md) into the indexed content for the relevant product pages. Only affects product options in categories of the **Products** type.

1. Open your web project in Visual Studio.
2. Create a new class in the **App\_Code** folder (or **CMSApp\_AppCode -> Old\_App\_Code** on web application projects). For example, name the class **SmartSearchContentLoader.cs**.

   ```csharp

   using CMS.Base;
   using CMS.DocumentEngine;
   using CMS.DataEngine;
   using CMS.Ecommerce;

   [SmartSearchContentLoader]
   public partial class CMSModuleLoader
   {
       /// <summary>
       /// Attribute class for assigning event handlers.
       /// </summary>
       private class SmartSearchContentLoaderAttribute : CMSLoaderAttribute
       {
           /// <summary>
           /// Called automatically when the application starts.
           /// </summary>
           public override void Init()
           {
               // Assigns a handler to the GetContent event for pages
               DocumentEvents.GetContent.Execute += OnGetProductPageContent;
           }

           private void OnGetProductPageContent(object sender, DocumentSearchEventArgs e)
           {
               // Gets an object representing the page that is being indexed
               TreeNode indexedPage = e.Node;

               // Checks that the page exists and represents a product (SKU)
               if (indexedPage != null && indexedPage.HasSKU)
               {
                   // Gets the ID of the SKU
                   int skuId = indexedPage.NodeSKUID;

                   // Checks that the SKU has at least one enabled product option
                   if (SKUInfoProvider.HasSKUEnabledOptions(skuId))
                   {
                       // Gets a collection of the SKU's enabled product option categories of the "Products" type
                       InfoDataSet<OptionCategoryInfo> categories = OptionCategoryInfoProvider.GetProductOptionCategories(skuId, true, OptionCategoryTypeEnum.Products);

                       // Loops through the product option categories
                       foreach (OptionCategoryInfo category in categories)
                       {
                           // Gets a list of enabled options in the product option category
                           ObjectQuery<SKUInfo> options = SKUInfoProvider.GetSKUOptionsForProduct(skuId, category.CategoryID, true);

                           // Loops through the product options
                           foreach (SKUInfo option in options)
                           {
                               // Adds the name of the product option into the indexed content for the product page
                               // Spaces added as separators to ensure that typical search index analyzers can correctly tokenize the index content
                               e.Content += " " + option.SKUName + " ";
                           }
                       }
                   }
               }
           }

       }
   }

   ```
3. Save the **SmartSearchContentLoader.cs** file.
4. Log in to the Kentico administration interface.
5. Open the **Smart search** application and **Rebuild** your page search indexes.

The search now returns product pages if the search text matches the name of one of the page's product options.
