이벤트 관련 태그

방문자가 페이지의 섹션을 클릭하면 채팅 제공

이 섹션은 다음을 사용하는 고객에게만 적용됩니다. 웹 채팅. Genesys Cloud CX 고객인 경우 웹 메시징, 보다 방문자가 페이지의 섹션을 클릭할 때 메시징 제안 제공.

다음 태그를 사용하여 방문자가 페이지의 "문의하기" 섹션을 열 때 방문자에게 채팅을 제공하는 액션 맵을 트리거합니다. 방문자의 행동은 방문자가 컨택 센터에 전화할 가능성이 매우 높다는 것을 나타냅니다.

태그

console.log('[Predictive Engagement] Contact Us Section v0.2');ac('dom', 'ready', function () {  setTimeout(function(){  $('div.spl-accordion-heading').on('click', function() {      const sectionTitle = $(this).text().trim();      ac('record', 'section_opened', 'Contact Us Section', {        sectionTitle: sectionTitle      });  });  }, 1500);});

방문자가 페이지의 섹션을 클릭할 때 메시징 제안 제공

이 섹션은 다음을 사용하는 Genesys 클라우드 고객에게만 적용됩니다. 웹 메시징. 당신이 사용하는 경우 웹 채팅, 보다 방문자가 페이지의 섹션을 클릭하면 채팅 제공.

태그

console.log('[Predictive Engagement] Contact Us Section v0.2');Genesys("subscribe", "Journey.ready", function(){  setTimeout(function(){  $('div.spl-accordion-heading').on('click', function() {      const sectionTitle = $(this).text().trim();           Genesys("command", "Journey.record", { eventName: "section_opened", customAttributes: { sectionTitle: "Contact Us Section"             }  });       });  }, 1500);});