Status: UP
Deliverability Letter
Important Update

Looking for the Latest Documentation?

We've moved our documentation to a new home! Visit our official docs site for the most up-to-date guides, API references, and tutorials. The below docs are like old and out of date.

How to open Bento Chat on specific pages?

Want to use Bento Chat but only on specific pages?

First, head over to the Chat tab and disable Bento Chat globally. Once it's disabled you can then use the script below to open it on any page you want. Remember, the page needs to have Bento.js tracking.

<script>
window.addEventListener("bento:ready", function () {
  if (typeof(bento$) != 'undefined') {
    bento$(function() {
        bento.showChat();
    });
  }
})
</script>