Install Yellow.ai search on your website
To install Yellow.ai Search on your website, follow these steps:
In your HTML file, place the below CSS tag at the end of the
<head>
tag.<link rel="stylesheet" href="<https://cdn.yellowmessenger.com/plugin/search/latest/dist/assets/index.css>" />
Create the
window._ys_
configuration script at the bottom of the<body>
tag.<script>
window.__ys__ = {
botId: "your_bot_id", //Enter the unique identifier of your bot.
target: "search_target", // Specify the target where you want to place the search bar on your website.
useDefaultSearchBar: true // Set this to true if you want to use Yellow's default search bar.
categories: [ //
{
label: "Products",
value: 'products,
}
{
label: "Knowledge Base",
value: "articles",
},
{
label: "Downloads",
value: "downloads"
}
],
};
</script>After creating the initialization script, add the below script inside the body tag.
<script src="<https://cdn.yellowmessenger.com/plugin/search/latest/dist/index.js>"></script>