Follow these steps to add the TailorTalk Widget to your website and customize its appearance and behavior.
Add Channels integration option.Website Channel.
Please enter your preferred settings and information in the widget configuration form and test the widget within it.

| Parameter | Type | Default | Description | Required |
|---|---|---|---|---|
| widgetName | string | (to be filled) | Name of the widget. | Yes |
| websiteUrl | string | (to be filled) | The website where the widget will be used. | Yes |
| color | string | '#6366f1' | Widget primary color (hex code). | Yes |
| position | string | 'bottom-right' | Position of the widget on the screen. | Yes |
| buttonText | string | 'Let's Chat' | Text displayed on the widget button. | No |
| welcomeMessage | string | (default message) | Welcome message shown to users. | No |

Choose your integration method and add the code as follows:
HTML Website:
Paste the code just before the closing </body> tag in your main HTML file (e.g., index.html).
React Application:
Place the code inside a useLayoutEffect (or useEffect) in your main component (e.g., App.js).
You can also create a dedicated component for the widget.
Next.js Application:
Use the code in your main layout or page file.
Make sure to import next/script as Script.
Choose your integration method and use the corresponding code snippet below.
Replace the values as needed for your configuration.
<script>
(function() {
function loadTailorTalkWidget(callback) {
var script = document.createElement('script');
script.src = "https://plugins.tailortalk.ai/widget.js";
script.onload = callback;
document.head.appendChild(script);
}
loadTailorTalkWidget(function() {
TailorTalk.init({
widgetName: "YOUR_WIDGET_NAME",
agentId: "YOUR_AGENT_ID",
color: "#6366f1",
position: "right",
options: {
buttonText: "Let's Chat",
welcomeMessage: "Hello! How can I assist you today?"
}
});
});
})();
</script>
import React from "react";
React.useLayoutEffect(() => {
if (!document.getElementById("tailortalk-widget-script")) {
const script = document.createElement("script");
script.id = "tailortalk-widget-script";
script.src = "https://plugins.tailortalk.ai/widget.js";
script.async = true;
document.body.appendChild(script);
script.onload = () => {
window.TailorTalk && window.TailorTalk.init({
widgetName: "YOUR_WIDGET_NAME",
agentId: "YOUR_AGENT_ID",
color: "#6366f1",
position: "right",
options: {
buttonText: "Let's Chat",
welcomeMessage: "Hello! How can I assist you today?"
}
});
};
}
return () => {
const container = document.querySelector(".tt-widget-container");
if (container) container.remove();
};
}, []);
import Script from "next/script";
<>
<Script src="https://plugins.tailortalk.ai/widget.js" strategy="afterInteractive" />
<Script id="tailortalk-init" strategy="afterInteractive">{`
function initTailorTalkWidget() {
if (window.TailorTalk && window.TailorTalk.init) {
window.TailorTalk.init({
widgetName: "YOUR_WIDGET_NAME",
agentId: "YOUR_AGENT_ID",
color: "#6366f1",
position: "right",
options: {
buttonText: "Let's Chat",
welcomeMessage: "Hello! How can I assist you today?"
}
});
} else {
setTimeout(initTailorTalkWidget, 100);
}
}
initTailorTalkWidget();
`}</Script>
</>
Tip:

Once integrated, your TailorTalk widget will appear on your website, ready to assist your visitors.
By following these steps, you can easily integrate and customize the TailorTalk Widget to match your website's style and user experience.