maybe try this? <script> // Function to load t...
# 🌎general
m
maybe try this? // Function to load the chatbot scripts function loadBotpressScripts() { // Load inject.js var injectScript = document.createElement('script'); injectScript.src = "https://cdn.botpress.cloud/webchat/v0/inject.js"; document.body.appendChild(injectScript); // Load config.js with defer var configScript = document.createElement('script'); configScript.src = "https://mediafiles.botpress.cloud/YOURBOTPRESSLINK"; configScript.defer = true; document.body.appendChild(configScript); } // Event listener to load the chatbot scripts after a delay (e.g., 5 seconds) setTimeout(loadBotpressScripts, 5000);
2 Views