Closer
  • Closer guides and FAQ
  • Back to Closer
  • Guide
    • Onboarding
      • Configure your widget
      • Install the widget on your website
      • Invite your team
      • Get the mobile app
      • Advanced Closer widget integration
    • Zacznij używać Closer
      • Przewodnik po platformie
      • Rozmowy
        • Inbox
    • Zarządzaj doradcami
      • Zaproś doradców firmy
      • Ustawienia doradcy
      • Grupuj doradców
    • Skonfiguruj routing
      • Wprowadzenie
      • Dodaj tagi
      • Reguły tagowania
      • Dodaj reguły tagowania
      • Grupuj tagi
      • Ustawienia grupy tagów
    • Getting deeper in dashboard
      • Conversations
        • Inbox
        • Conversation data
    • Getting deeper in widget
      • Widget guides
    • Notifications
    • How to
      • Schedule online meetings
      • Click to call
      • Tagging
      • Proactive messages
      • Set up skill-based routing
      • Manage your team’s workload
      • Force new user everytime in widget
      • User authorization callbacks
      • On deinit callback
      • Identify leads
      • Reports
      • SLA
      • Customer typing preview
      • Push out data with Webhooks
      • Routing
      • Widget OAuth configuration
      • Forms configuration
      • Org configuration API
      • Org configuration fields
      • Configure OMNI integration
      • Elasticsearch business logs
      • Elasticsearch security logs
      • Manage widget button
    • Contact us
    • Supported browsers
    • Upcoming features drafts
      • Business events structure (JSON) - Draft
  • FAQ
    • General
    • Bots
    • Calendar
    • Random
Powered by GitBook
On this page

Was this helpful?

  1. Guide
  2. How to

Click to call

Installing click to call feature is quite simple, but you might need to ask your developer to do that for you.

Find the closer.init section on your website. This is the one you have added installing Closer widget for the first time. It looks like this (orgId is unique for your company):

closer.init({
  orgId: "00000000-0000-0000-0000-000000000000",
});

Now add two lines: "autoClientCalling: true," and "alwaysAutoCall: true,"

After adding it should look like this:

closer.init({
  orgId: "00000000-0000-0000-0000-000000000000",
  autoClientCalling: true,
  alwaysAutoCall: true,
});

Add those lines to closer.init section on every page, where you want to have instant call button.

Now you can add your personalized button which you can create from your CMS. Just remember to add onclick="closer.openWidget('autocall') in the button parameters.

Here is an exmaple of how this button could look like:

<button onclick="closer.openWidget('autocall')">Open with autocalling</button>

PreviousSchedule online meetingsNextTagging

Last updated 5 years ago

Was this helpful?