AnswerLattice Agent Install Layer

Webflow install

Custom-code footer install guidance for Webflow and similar hosted sites.

Install target

One v1 widget script in the app shell

Safe context

Path, title, feature, workflow, role, locale

Verification

Loaded, origin allowed, route allowed, context received

Agent-ready snippet

<!-- Add once in Project Settings > Custom Code > Footer Code. -->
<script
  src="https://answerlattice.com/widget/v1/answerlattice-widget.js"
  data-answerlattice-key="{{ANSWERLATTICE_WIDGET_KEY}}"
  async
></script>
<script>
  window.addEventListener('load', function () {
    window.AnswerlatticeWidget?.page({
      path: window.location.pathname,
      title: document.title,
      feature: 'site',
      workflow: 'customer_support',
      role: 'visitor',
      locale: navigator.language || 'en'
    });
  });
</script>