방문자 통계 스크립트 설치 가이드
방문자 통계는 '샵바이' 전용으로 제공되는 앱 입니다.
1. 방문자 통계 스크립트 확인
setStatisticsLogging() {
const SCRIPT_URL = 'https://rl3flznkr.toastcdn.net/shopby-statistics-recorder.js';
const scriptElement = document.createElement('script');
scriptElement.async = true;
scriptElement.src = SCRIPT_URL;
document.head.append(scriptElement);
scriptElement.addEventListener('load', () => {
if (typeof window.shopbyStatistics === 'function') {
window.shopbyStatistics({
clientId : ${클라이언트 아이디},
memberNo : ${로그인 한 고객의 memberNo},
});
}
});
},2. 방문자 통계 스크립트 복사
3. 복사한 스크립트 설치 및 통계 데이터를 쌓기 위한 함수 호출
4. 스크립트 설치 확인


5. 방문자 통계 데이터 확인
Last updated