Hello everyone, Im trying to add a chat widget from bitrix24.com If i add it via a HTML iframe it works, but the box size is too large and it covers the elements in my website. I tried adding it as a custom code at the end of body, at the start of body and at the head but it doesn’t appear. Im no expert in JS, I want to see if anyone can help please! I paste the code below:
Good Morning,
you can add in the iframe html and put as (error loading) and add a fixed button that shows and hides the iframe html, it will only take up space for click if it is being displayed.
export function chatbuttom_click() {
//Add your code for this event here:
if ($w("#chatbox").collapsed) {
$w("#chatbox").expand();
} else {
$w("#chatbox").collapse();
}
}