FeddyDocs
Quickstarts

Webflow

Add the Feddy widget to a Webflow site by pasting two lines into Custom code.

By the end of this page your site has a support launcher, and a message sent from it shows up in your Feddy inbox.

Prerequisites

  • A Feddy project and its project ID from Settings → Install. Create a project if you have none.
  • Nothing to install from npm. The widget is one script served from core.feddy.app, loaded at runtime.

Paste into Custom code

In Webflow open Site settings → Custom code and paste into Footer code:

Site settings → Custom code → Footer code
<script src="https://core.feddy.app/sdk/feddy.js"></script>
<script>
  Feddy.init({ projectId: 'fd_XXXXXXXXXXXXXXXX' })
</script>

Publish the site. Custom code is not applied in the Designer preview.

The project ID ships in your page source and is public by design. Commit it. Do not put it in a secrets file or an environment variable.

Choose an entry point

The floating launcher appears bottom-right on every page. To open the panel from a button you designed, give the button an ID such as help, pass launcher: false to init, and add one line after it: document.querySelector('#help').addEventListener('click', () => Feddy.open()).

Verify

Open the page, click the control, and send a message. It appears in your Feddy inbox. Reply from the inbox; the reply shows up in the panel.

Next steps