I set 2 different department values for 2 websites (WebsiteNO and WebsiteSE).
For WebsiteNO:
window.zESettings = {
webWidget: {
...
chat: {
departments: {
enabled: ['Norge'],
select: 'Norge'
}
}
}
};
For WebsiteSE:
window.zESettings = {
webWidget: {
...
chat: {
departments: {
enabled: ['Sverige'],
select: 'Sverige'
}
}
}
};
When I go to WebsiteSE, I see the following picture:
The meaning of this approach is to have the department working only with the specific website without a choice to select another one as websites are not interconnected, and Norge department can't help with any requests of people from WebsiteSE and vice versa.
Could you help me to set up it properly?