Для открытия чата по наличию #hash, можно использовать такой код:
document.addEventListener('tocha:loaded', () => {
if(window.location.hash === '#start') {
document.dispatchEvent(new Event('tocha:open'));
}
});
Пример ссылки
Другой вариант js кода работает в tilda:
window.addEventListener('hashchange', function () {
if(window.location.hash === '#start_chat') {
document.dispatchEvent(new Event('tocha:open'));
window.location.hash = '#';
}
});
И добавить ссылку href="#start_chat"