×

언어선택

한국어 English

확장 기능

도움이 될만한 추가 사항 입니다.

맞춤 매개변수

매개변수를 통해 사용자를 구분하려면 다음과 같이 하세요.

웹사이트에서 회원 정보를 받을때 더욱 유용한 기능입니다. 트래킹 코드의 식별자를 통해 사용자를 구분 할 수 있습니다. (ex: 이메일, 사용자id, 이름 등..)

왜 사용해야 할까요? 이 기능은 구분된 사용자들의 행동과 웹사이트에서 발생한 문제를 이해하려고 할때 매우 유용합니다. 예를들어, 사용자로부터 문제발생 문의가 들어왔을때 세션을 리플레이하면 사용자의 활동을 그대로 보고 도움을 줄 수 있게 됩니다.

다음 코드를 data-custom-parameters='{JSON_PARAMETERS_HERE}' 픽셀 코드에 추가하면 됩니다:

<script async src="https://viscatch.com/pixel/12345678910111213" data-custom-parameters='{"name": "John Doe", "email": "john@example.com"}'></script>

코드가 정상적으로 작동되면, 방문자 페이지에서 다음의 아이콘이 표시되며 이것은 정상적으로 식별되었음을 의미합니다.

Goals

First of all, you need to understand the concept of a goal. A goal is something that you want to track that the already existing analytics are not tracking—anything from a button click, downloads, specific page view, like a thank-you page after a checkout...etc.

Pageview

The pageview goal is the easiest to set up and the conversion of the goal will happen once a visitor reaches a certain specified page.

A good example would be when you have a 'thank you' page after the conversion happened (newsletter, purchase, form submission...etc) where the user will land on after.

Custom

Custom goals will require some extra code implemented to the tracked website, which is specified when you create a new goal from the dashboard.

A custom goal is mainly used for when you want to track a specific event that happens on your website, which can't be tracked with the pageview method.

Some examples of where custom goals will shine are:

  • Tracking clicks on external links
  • Tracking more advanced form submissions
  • Tracking clicks on specific parts of your pages

Here is what a javascript snippet would look like for goal tracking:

.goal('my-goal');

When this code will trigger inside of your page, the goal conversion will be triggered as well on our side.