the Bento growth platform

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>