Modify Display Markup
IMPORTANT : The methods within this article are being replaced! Please review the following updated guides for efficient customization:
To modify a Klevu Template, a new template is created to replace the default instance at a specific position within the interface framework. Then during powerUp, 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
Please see Custom Overrides for the prerequisite details on preparing for Klevu JS overriding.
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 by appending 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=*&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.
In this example, Klevu will use the HTML within the script id searchResultProductBadge where called 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
After locating the template you wish to overwrite, it is often easiest to clone the script block and give it a unique id. Then apply any modifications you like.
For example, the default template for displaying a product badge ...
... Becomes ...
Please see Template Engine for further details about available data elements and options.
Assign the new template id to the target render name within a previously established custom event listener.
Please see Custom Overrides for details on preparing for Klevu Template overriding.
Search landing page micro-template override displaying a custom badge message.
Replaces the default markup at the landingProductBadge position.
QuickSearch micro-template override displaying a custom badge message.
Replaces the default markup at the klevuQuickPromotionBanner position.
Category page micro-template override displaying a custom badge message.
Replaces the default markup at the landingProductBadge position.