Last updated
Syntax: open:Inbox
Open chat box of Shopify Inbox and hide the default float button (FAB) to save space.
Link: https://www.tidio.com/
// Add a javascript function
function openTidi() {
tidioChatApi.display(true);
tidioChatApi.open();
}

// Call the functions:
if (document.readyState === 'complete') {
naviman.waitElementToAddStyle("#tidio-chat-root", "margin-bottom: 50px !important;");
} else {
window.addEventListener('load', function () {
navimanwaitElementToAddStyle("#tidio-chat-root", "margin-bottom: 50px !important;");
});
}
Set a 50px offset to move the Tidi chat up or down, as needed
Last updated