Installation
We have a plug and play setup. Integrate docwhizz seamlessly with any well-known platforms by copying and pasting a single code snippet – no expertise necessary.
Configuration
Before installation you need to ensure that you have configured your branding preferences in your dashboard:
Parameter | Description |
---|---|
Primary Color | This is the primary color used to highlight the trigger button. |
Text Color | This is the color of the text within the trigger button. |
Logo | This is a URL for your company logo. |
Company Name | This is the name of your company that you want to display to users. |
Button Size | This configures the size of the button. |
Beta | This configures if you want to show a BETA flag on the widget. |
Message | This configures a custom message to display to users. |
Code snippet
To get started with DocWhizz, first, sign up for an account with us. After that, just grab your CLIENT_ID from your dashboard under Settings.
The simplest way to connect with DocWhizz is by using our code snippet. Just swap out the YOUR_CLIENT_ID
placeholder with your client ID and insert the code before the closing head tag.
Copy and paste code snippet
<!-- DocWhizz Assistant Widget - Paste this right before your closing </head> tag -->
<script>
!(function () {
let t = document.createElement("script");
t.setAttribute("data-id", "docwhizz-script"),
t.setAttribute("data-client", "YOUR_CLIENT_ID"),
(t.crossOrigin = "anonymous"),
(t.src = "https://widget.docwhizz.com/index.js"),
(t.type = "module"),
document.head.appendChild(t);
})();
</script>