Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Loading...
ARCHIVED This content is retired and no longer maintained. See the latest version here.

Recommended reading 

To configure the Episerver Find provider for Commerce, create an index at find.episerver.com; after which, go to the details page for the index, and make a note of the values for serviceUrl and defaultIndex from the sample web.config.

To configure the Episerver Find provider for Commerce, edit the Mediachase.Search.config file for your implementation.

  1. Set the defaultProvider attribute in the SearchProviders element to FindSearchProvider.
  2. Ensure the following element exists in the Providers section, and update the serviceUrl and defaultIndex values to match the values from the index details page at find.episerver.com:
    <add name="FindSearchProvider"
        type="EPiServer.Commerce.FindSearchProvider.FindSearchProvider, EPiServer.Commerce.FindSearchProvider"
        serviceUrl="(set the serviceUrl here)"
        defaultIndex="(set the defaultIndex here)"/>
    Change the element in the indexers section to use appropriate index builder for the find service:
    <Indexers basePath="(the preexisting path)">
        <add name="catalog" type="EPiServer.Commerce.FindSearchProvider.FindSearchIndexBuilder, EPiServer.Commerce.FindSearchProvider" />
    </Indexers>
  3. Rebuild your search index from the Commerce Manager search interface.

Notes

The Find search provider for Commerce matches only the basic query string against fields of type integer or string. While catalog meta-fields of type float, double, or decimal may be marked as Include in Default Search in the meta-field configuration interface, these fields are not matched against the basic query string.

Other querying (filters, queries, or faceting against specific fields) functionality will work on meta-fields of type float, double, or decimal.

If you want to match against these type of data from the basic query string, store the data in a string-typed meta-field, and mark that field as Include in Default Search.

Related topic

Do you find this information helpful? Please log in to provide feedback.

Last updated: Oct 12, 2015

Recommended reading