Set Template
To modify a Klevu Template, a new template is created to replace the default instance at a specific position within the interface framework. Then, indicate that Klevu should use the new template in place of the default.
There are three steps:
- Identify which micro-template to be replaced
- Create the new template
- Assign the override for the appropriate template block
Klevu Theme provides a working implementation of Quick Search, Search Results Landing Page and Category Pages by just including a small JavaScript asset. All of the HTML templates are injected into your page when our JavaScript Library powers up.
In order to make efficient modifications to a template, understanding the structure and syntax will be important.
Klevu Template JS is built on a framework of micro-templates. The micro-templates are positioned as reusable components where applicable within the base Klevu framework.
The easiest way to understand this is to enable Template Hints. There are two steps to enable Template Hints:
- set a sessionStorage variable by opening your browser's Developer Tools, going to the Console and typing the following command:
- sessionStorage.setItem('klv_debugMode', true);
- Once you have ran the above command in the Console you can append the parameter klib_global_templateHints=true to your URL.
This will expose the micro-template positioning, each with a red border for context as well as the associated name used for rendering.
e.g: https://www.yourdomain.com/search/?q=blue&klib_global_templateHints=true
The micro-templates use this identifier to render components in place by name
For Example, landingProductBadge can be called to render at multiple positions within the default search templates.
Please see Template Engine for further details about helper.render and options
The Klevu theme reference script injects the micro-templates onto the webpage. The best way to view the generated templates is using the browser "Inspect Element" developer feature.
Within the website <body> you will find Klevus template <div> container(s) that include the scripted micro-templates.
The micro-templates will all be of type="template/klevu" and will all contain a unique id
e.g.
The template id is assigned to the template name during the rendering process.
For example, the default Search Result Page (landing) Template uses the markup within the script id searchResultProductBadge to render by the name landingProductBadge.
Note: The render name is not always the same as the default micro-template id
Please see Template Reference for quick reference chart of template id to name. As well as detail on how to view the default template markup.
After locating the template you wish to overwrite, it is often easiest to make a copy of the original script block and give the new copy a unique id. Then apply any modifications you like to the new copy.
Please see Template Reference for detail on how to view the default template markup.
For example, make a copy of the default template for displaying a product badge ...
... and replace the id to something unique ...
Note: The use of the console.log output for the dataLocal object has been provided here for reference. This is an easy way to review the product attributes available for use within the template on the browsers developer console.
Please see Template Engine for further details about available data elements and options.
Assign the new template id (selector) to the target render name within the Klevu options object using the following format.
e.g.
Notice how the selector value is actually a CSS selector for your new template.
Note that each setTemplates assignment requires definition within the corresponding scope of the override. We will chart these below.
Scope | Description |
---|---|
all | Applies to all scope modules |
quick | QuickSearch module |
landing | SRLP module |
catnav | Category module |
full_page | Both SRLP and Category modules (same as "landing,catnav") |
Search landing page micro-template override displaying a custom badge message.
Replaces the default markup at the landingProductBadge position for the landing scope only.