test2 / wordpress code /WP_INTEGRATION_SCRIPT.txt
joedown11's picture
Update internal URLs for testing space
be389db
Raw
History Blame Contribute Delete
640 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://testingweb647-test2.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>