Search

Omnisearch

A single full-page window that serves your visitors with the results that are most likely to convert.

Omnisearch example
Powered by Clerks latest Search technology, Omnisearch provides you with the flexibility that you need to offer the best modern search experience:

  • Live results are shown to your visitors as they type, and include products, categories and pages.
  • Query suggestions inspire your visitors to discover your catalogue through popular searches.
  • Sorting and filtering: to let your visitors refine their search in an intuitive an easy way.
  • Easy to integrate in your site using one of our great starting templates.
  • It matches your brand through changing a few standard settings like logo, fonts, colors and more.
  • It’s fully customizable with HTML, CSS and Liquid for developers.

Getting started #

Omnisearch consists of a customizable Design for visuals and a Content block that allows it to be installed on your site.

Creating a design #

Omnisearch design libraru

This is done in Search > Designs > New Design

Select the Omnisearch type, pick a starting design and give it a name.

Click Save & Close to finalise the standard design.

Our standard designs work out-of-the-box and can always be edited later. Editing requires knowledge of HTML, CSS and Liquid. Check Styling in this guide for more info.

Creating a Content #

Content settings

This is done in Search > Content > New Content

Content blocks are containers for elements you create in your my.clerk.io account. They contain the logic to show results with and settings for how many results to show.

  • Name helps you identify your content in case you want to create more than one. It can be modified later.
  • Content type Is Omnisearch by default, and should not be changed.

Finalise Design #

Design block of an Omnisearch content

The design to render the Content block through. Select the design you created.

If your design includes any variables, they can be set here as well.

You can control the number of results to display for each type, every time a search is made. We generally recommend these amounts:

  • Products: 20-60
  • Suggestions: 5
  • Categories & pages: 10

Lastly, choose the attributes you want to include as Facets and set the names they should be displayed as in the search results. If you cannot find a specific attribute in the list, add it in the “filterable attributes” list, in Search Configuration.

Inserting into site #

Injection method
The recommended method for this is with injection but you can also insert the content in your site with an embedcode.

Visibility is used to control who can see the Omnisearch.

  • In preview allows you to test your content without impacting your live site. You can open your site in preview by clicking “Open site in preview” or by adding ?clerk_content_mode=preview to your site’s url.

  • In my live site is used when you are done testing and ready to make it public.

Using injection #

This is the easiest way to install. Clerk will automatically add the Omnisearch code to your site, by targeting a search field of your choice, and triggering based on an event.

  • Event controls what the user should to to trigger the Omnisearch. Most likely you want it to display when your visitors click on your search icon or input field.

  • Element decides the part of the website that the user should interact with. For example, if you want your Omnisearch content to display only when your visitors interact with your search bar (click or focus over it), you just need to find the unique CSS selector applied to it. If you have different identifiers in mobile and desktop, add them both.

Find your unique CSS selector this way:

  1. Inspect your sites code. In most browsers you can right click anywhere on your page and choose Inspect or similar.
  2. Find the element you want to target
  3. Rigth click over it, and find the option copy > copy selector

Using embedded code #

Insert content in your site

This allows you to add Omnisearch with a snippet. Using this requires you to be able to edit the HTML files of your webshop or add code with an editor.

If you have any unsaved changes, save them to generate the embedded code.

Copy this code and pase it in the file that generates all pages of the webshop, ideally near the end </body> tag.

Replace INSERT_CSS_SELECTOR_FOR_ELEMENT_THAT_SHOULD_TRIGGER_OMNISEARCH with the CSS selector of the html element that should trigger your Omnisearch.

For developers #

Omnisearch design

Styling #

Designs consist of a main layout, CSS styling and a set of sub-designs that can be referenced in the main layout. You can edit all of these for Desktop and Mobile seperately.

Initially, you may want to only adjust a few things to make the design match your brand’s look and feel - You can always edit your design later.

HTML #

This is the main layout that controls placements of all elements. It uses Liquid as a templating language.

In our starting designs, the first section is dedicated to the most commonly changed elements, like sorting labels and currency.

CSS #

Styling that will be injected with the HTML, giving you full control over the visuals in a contained way.

Available Sub-designs #

Any designs added here can be can be referenced in the general layout. They function as modules that are edited separately and are added with their ID and name: {{@247373 - TopBarSearchForm}}

You can delete, duplicate and copy the reference of any sub-design by clicking the three dots button.

Sub-design options

To edit a sub-design, click on its Edit icon. Once you’re finished editing, click Save & close, to return to the main layout editor.

Sub-design edit

Some elements need specific identifiers for your design to work, such as the input field id=”clerk-omnisearch-input” or the content wrapper `id=“clerk-omnisearch-content”.

Whenever you want to check your progress, you can do it by clicking the “Preview design” button.

The most often changes made to designs are these:

  • Logo: Access the TopBarSearchForm and replace the default logo with yours.

  • Fonts: If needed, adjust the fonts to match your site’s look and feel.

  • Colors: You can add your brand’s colors in those elements you want to emphasize or streamline with the rest of your site like buttons and tags.

  • Buttons and tag borders: You can adjust their color, radius, width…

  • Links: If you have a specific styiling for your links, you can also edit it.

Overlay structure #

When omnisearch is initiated, it creates an element with the class clerk-omnisearch-overlay and is injected into the bottom of the body.

This is where we will inject the design, as we have the input element as part of the design we need to have a structual demands to ensure we don’t re-render the input element on each load. The structure should look like the following underneath the overlay:

<div>
    <input type="text" id="clerk-omnisearch-input"/>
    <div id="clerk-omnisearch-content">
        Content!
    </div>
</div>

Input field #

To find the input field it needs to have the following identifier clerk-omnisearch-input. Ones the trigger element has been fired, we are moving the cursor focus to this element, and add whatever query we have to it, so we can keep the user experience somewhat seamless.

Content Wrapper #

The content wrapper is where most of the things are happening, the wrapper around it needs to have the identifier clerk-omnisearch-content. In here should be the facets, the sliders and everything else that is not the input field.

Classes #

Functionality can be added to the design by adding specific classes to elements.

Close Button #

clerk-omnisearch-close

When attaching the class to an element inside the design, that element will hide the overlay.

Sorting #

clerk-omnisearch-sort

Finds sorting dropdowns and adds listeners to them.

To get a sorting element in the design, add thisto the selecting element, e.g. a dropdown. To work, the element needs to be the following value:[desc|asc], so the value we want to sort, with a colon and then either desc or asc. Optionally you can add a data-sort-type attribute if you want it to sort categories or pages.

Search Facet #

clerk-facet-search

If there is a facet search present, creates a listener and hides facets that do not match the query.

The class, when present in a webpage, checks for the existence of any facet search elements. Facetsearches provide a way for users to search in the facets. For it to work, the element need to have a string value.

Full Clear #

clerk-omnisearch-full-reset

When clicked, elements with the class will clear all selected facets and reset the query.

Facets Clear #

clerk-omnisearch-facet-full-reset

When clicked, elements with the class will, deselect all of the active facets. This would be typically seen on a ‘Clear all’ style button within a group of facets, allowing users to reset their selected filters in one easy action.

Group Clear #

clerk-omnisearch-facet-group-reset

When clicked, elements with this class will deselect all child elements within the group.

To provide the feature of deselecting an entire group of facets, an element can be given the class. Once the element is activated (e.g., clicked), all elements within its group become deselected, resetting that facet group. For it to work, the element must have the group we want to clear as an attribute with the name data-facet-group.

Facet Clear #

clerk-omnisearch-facet-reset

Elements with this class need to deselect a single element with the given group/value attribute pair.

This class is designed for scenarios where it’s necessary to deselect a single facet. An element with the class can be associated with a specific facet in a group by giving it both an data-facet-group and a data-facet-value. Upon activation, it will only deselect its associated facet based on the given group/value attribute pair, leaving other selected facets unchanged.

Facet Click #

clerk-facet

Elements with this class will be treated as a selectable facet.

All facets should have a class with the data-facet-group and a data-facet-value attributes, so we know what the customer is pressing.