Let users call you directly by putting the Cohere Voice widget on your site!
An example Cohere Voice widget
Change the widget's appearance
Customize how the widget looks by going to Dashboard → Settings → Widget appearance. You can choose to upload a friendly face or logo as the widget's avatar, change any of the text displayed on the widget, or change the widget's position on your site.
Automatically show the widget
In Settings → Widget visibility, set your availability, and click the "show widget" checkbox. Assuming you already have Cohere set up on your site, the widget should pop up automatically during business hours!
Manually adjust the widget's visibility
You can show, hide, expand, or compress the widget by calling Cohere.widget:
1
// Shows the widget.
2
Cohere.widget("show");
3
4
// Hides the widget.
5
Cohere.widget("hide");
6
7
// Expand the widget, showing the call button and a description.
8
Cohere.widget("expand");
9
10
// Collapse the widget, showing only the widget image and title.
11
Cohere.widget("collapse");
Copied!
Manually get availability
Assuming you already set your availability in Settings → Widget visibility, you can programmatically access your availabilityby using Cohere.isAvailable():
1
Cohere.isAvailable((available)=>{
2
if(available){// And any custom availability logic here!
3
// do something...
4
}
5
});
Copied!
Get notifications
Enable browser notifications or a ringtone (sound that plays in the dashboard) for incoming calls in Settings → Incoming calls.