Install on WordPress
There are two easy ways to add ForeverChat to WordPress. The plugin method is safest because it survives theme updates.
Option A — a footer plugin (recommended)
- 1Install and activate a plugin such as “Insert Headers and Footers” or “WPCode”.
- 2Open its settings and find the Footer / Body-end section.
- 3Paste the snippet below (replace the app ID) and save.
WordPress — footer
<!-- ForeverChat -->
<script>
window.ForeverChat = { appId: "fc_YOUR_APP_ID" };
</script>
<script async src="https://gateway-381807041351.us-east4.run.app/widget.js"></script>Option B — edit the theme footer
In a child theme, add the snippet just before wp_footer() in footer.php. Always use a child theme so an update to the parent theme doesn’t erase your change.
Don’t edit the parent theme directly. Parent-theme edits are overwritten on the next update. A footer plugin or child theme keeps your snippet safe.
Editing raw templates instead? See the standard install guide.