This widget is currently available only for Enterprise customers.

  1. In the settings page, click Widget Installation .

image.png

  1. Select the platform where you want to install the widget.

image.png

  1. Copy the installation cod**e** and add it to your website code.

example:

<!-- BlynxLab Chat Widget -->
<script>
	(function() {
		const script = document.createElement('script');
		script.src = '<https://blynxlab.com/widget.js>';
		script.onload = function() {
			BlynxLabWidget.init({
				slug: "your-slug"
			});
		};
		document.head.appendChild(script);
	})();
</script>
  1. Configure the widget landing page.

You can customize the greeting message and introduction text.

image.png