chatbot21 / wordpress code /WP_INTEGRATION_SCRIPT.txt
joedown11's picture
Upload 47 files
3910b9e verified
Raw
History Blame Contribute Delete
638 Bytes
<!--
Martechsol Chatbot Integration Script
Paste this snippet right before the closing </body> tag on your WordPress site.
It will automatically load the UI and logic from your Hugging Face space.
-->
<script>
fetch('https://joedown11-chatrag.hf.space/static/addon.html').then(r => r.text()).then(h => {
const d = document.createElement('div'); d.innerHTML = h; document.body.appendChild(d);
d.querySelectorAll('script').forEach(s => { const n = document.createElement('script'); Array.from(s.attributes).forEach(a => n.setAttribute(a.name, a.value)); n.innerHTML = s.innerHTML; document.body.appendChild(n); });
});
</script>