Display Omnichannel chat widget in the footer of your portal

The combination of PowerPortals, Dynamics 365 Omnichannel and Power Virtual Agents increases the level of customer engagement for customers, in this post I'm going to guide you how to add your Omnichannel chat widget that you configured to your portal.
First, below are the pre-requisites to follow the blog,
- You have at least one Portal
- Omnichannel is installed
- Power Virtual Agent bot is configured to hand of chat conversations to Omnichannel
After having the above pre-requisites done, follow the below steps,
- From the "Omnichannel admin center" model-driven application
- Go to Workstreams and create and configure a new workstream based on your channel
- Enter your stream record, and click on "Copy code snippet"
- Switch to "Portal Management" model-driven app
- Create a new content snippet and past the copied snippet from Omnichannel work steam
- Go to "Web Templates" and enter the "Footer" record
- Search for the footer tag and add the widget using the below code
{% include 'snippet' snippet_name:'Your Chat Widget Name' %}
The footer tag will look like this
<footer role="contentinfo">
<div class="footer-top hidden-print">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-12 col-xs-12 text-left">
{% editable snippets 'About Footer' type: 'html' %}
{% include 'snippet' snippet_name:'Your Chat Widget Name' %}
</div>
</div>
</div>
</div>
- Clear your portal cache by navigating to "<< Your portal URL >>/_services/about"
You need to be logged in to your portal with a contact that has administrator portal role
click on "Clear Cache" button
- Refresh your portal and you will see the chat widget displayed!
That's it!
You want to add it to more web templates? follow the steps from step number 5 on the web template you like.
Published on:
Learn moreRelated posts
Working with Power Pages Web API
Introduction Microsoft Power Pages, previously known as Power Apps Portals, allows organizations to create external-facing websites that secur...
Power Pages Fundamentals #19: How to Use Liquid and FetchXML in Power Pages: Quick Read Series
In Power Pages one common scenario was to query dataverse and get details of a record based on some filter condition. This can be achieved in ...
Error | We’re sorry, but something went wrong | Power Pages
It took me a few hours to figure this out, and hopefully this post will save you time Multiple factors can trigger this error, the root cause ...
Power Pages – Delete Operation using WebAPI
Delete Operation: The DELETE method deletes an existing record by its ID. The record ID is included in the URL, and the response indicates whe...
Power Pages: Inserting Content Snippets in Design Studio
I have written before Content snippets in Power Pages and how it is one of those features that I feel doesn’t get enough attention. Here...
Power Pages File Manager
Power Pages – Read(Get) Operation in Different Ways
When reading (GET) data from Dataverse in Power Pages, you can choose different approaches based on your requirements. Below are three common ...
Power Pages | Azure AD B2C | Claims mapping
In my previous blog post : [Step by Step] Power Pages : Set up Azure AD B2C I explained the steps to set up Azure AD B2C tenant and configure ...