Learn how to integrate EasyFindAi into your Wix website
Add the EasyFindAi chatbot to your Wix site by adding a custom HTML element.
<scriptsrc="https://easyfindai.com/api/chatbot-embed?apiKey=YOUR_API_KEY"></script>
To add the chatbot to all pages on your Wix site, use the Wix Code/Velo feature:
// Add this code to your masterPage.js fileimport {head} from 'wix-document';$w.onReady(function () {// Create script element for EasyFindAi chatbotconst scriptEl = document.createElement('script');scriptEl.src = 'https://easyfindai.com/api/chatbot-embed?apiKey=YOUR_API_KEY';// Add script to the document headhead.appendChild(scriptEl);});
After adding the chatbot to your Wix site:
Note: If you're using Wix's new Editor X, the process is similar, but you'll need to use the "Add Elements" panel to add the HTML component.
That's it!
Your EasyFindAi chatbot is now active on your Wix website and ready to help your visitors.