Chat

Add Kontato Chat widget to your website with a few lines of code.

Listen to the audio to learn how it works

Quick Start

Add this code to your website before the closing </body> tag:

Basic Installation
<script>
window.kontatoSettings = {
    'store-id': "YOUR_STORE_ID"  // This is your real storeId
};
</script>
<script async src="https://chat.kontato.com/chat-loader.js"></script>

Configuration Options

Basic Options
OptionTypeDefaultDescription
store-idstringrequiredYour unique Kontato store identifier
dark-modestring"light"Theme mode: "light" or "dark"
chat-closedstring"true"Initial state of chat widget
full-namestringundefinedCustomer's full name
emailstringundefinedCustomer's email
Branding Options
OptionTypeDefaultDescription
brand-namestring"Kontato"Company name shown in chat header
brand-logostringundefinedURL to your company logo
brand-background-colorstring"#0d6efd"Header background color
hide-kontato-brandstring"false"Hide "Powered by Kontato" footer

Example Configurations

Custom Branding
window.kontatoSettings = {
    'store-id': "YOUR_STORE_ID",
    'brand-name': "MyCompany",
    'brand-logo': "https://example.com/logo.png",
    'brand-background-color': "#FF0000",
    'hide-kontato-brand': "true"
};
Customer Identification
window.kontatoSettings = {
    'store-id': "YOUR_STORE_ID",
    'full-name': "John Doe",
    'email': "[email protected]",
    'uuid': "unique-customer-id"
};