The RingQ Chat Widget enables real-time messaging between website visitors and your RingQ users, allowing conversations to be handled directly within the RingQ platform. By embedding the widget into your website, administrators can extend customer communication beyond voice while maintaining centralized control and visibility. This guide explains how to generate, configure, and add the RingQ Chat Widget to your website, ensuring it is properly deployed and ready for use.
1. Use the below script exactly as given:
<script src=”https://multi.flowersconradplc.ringq.cloud/iframe/chat-embed.php?color=%23e5ddd5&accesstoken=7b1a1824-6dfa-417a-b485-73d83b307ef3&img=https://www.ringq.com/wp-content/uploads/2023/09/cropped-RingQ-favicon-blue-Q-32×32.png&fqdn=multi.flowersconradplc.ringq.cloud&tokenized=%242y%2410%24Q0c5WUlCQnFZYU0zRTlEMeRnveV00SzK5qaPEf5XsE.MVKncD4m9C”></script>
Part | Purpose |
<script> | Loads external Javascript |
chat-embed.php | Chat widget loader |
color | Widget theme color |
accesstoken | Authenticates widget |
img | Chat icon/logo |
fqdn | RingQ tenant domain |
tokenized | Security & validation token |
Edit the color (color=) Your current value:
To change it:
Example: <script src=”https://multi.flowersconradplc.ringq.cloud/iframe/chat-embed.php?color=%231e90ff&accesstoken=YOUR_TOKEN&img=YOUR_IMAGE_URL&fqdn=multi.flowersconradplc.ringq.cloud&tokenized=YOUR_TOKENIZED”></script> Rule: always encode # as %23. Edit the access token (accesstoken=) Replace: accesstoken=7b1a1824-6dfa-417a-b485-73d83b307ef3 with the new token value you want to use. Example: accesstoken=NEW_ACCESS_TOKEN_HERE Important:
Edit the image (img=) Replace the img= value with a public image URL. Example: img=https://yourdomain.com/images/chat-logo.png Tips:
Make sure the image URL has no spaces. If it does, it must be URL-encoded (best is: don’t use spaces in filenames). Edit the FQDN (fqdn=) Replace: fqdn=multi.flowersconradplc.ringq.cloud with your target tenant domain, like: fqdn=multi.yourcompany.ringq.cloud Important:
Critical note about tokenized= In many implementations, tokenized is tied to the access token / fqdn / parameters for integrity. So if you change any of these:
…your tokenized= might no longer be valid, and the widget can fail to load. Best practice:
1. Open the main HTML file of your website (for example: index.html). 2. Add the script just before the closing </body>tag:
<body>
<!– Your website content –>
<script src=”https://multi.flowersconradplc.ringq.cloud/iframe/chat-embed.php?color=%23e5ddd5&accesstoken=7b1a1824-6dfa-417a-b485-73d83b307ef3&img=https://www.ringq.com/wp-content/uploads/2023/09/cropped-RingQ-favicon-blue-Q-32×32.png&fqdn=multi.flowersconradplc.ringq.cloud&tokenized=%242y%2410%24Q0c5WUlCQnFZYU0zRTlEMeRnveV00SzK5qaPEf5XsE.MVKncD4m9C”></script>
</body>
3. Refresh your website in the browser. 4. The chat widget should appear (usually at the bottom corner of the page).