Search Queries
If you have a search bar on your website, you can capture the searches users are making by sending search_query events events to Kardio.
Here is an example of a search event being sent to Kardio for a query of "red shoes":
<script>
window.kardio_data.push({
event: "search_query",
query: "red shoes"
});
</script>
When implementing this code, you should replace "red shoes" with the value of the search the user has made.