Tags
Tags are strings that can be associated with a specific visit/session. Unlike events, tags are unique per session (i.e. can not have duplicate tags), are simple strings of a length of maximum 128 characters. Tags can be used to quickly filter/segment data.
Example
Instructions
Sometimes you might want to save additional data for each tracked user (such as username or whether they clicked a button or not).
To add a tag, the function WPLY.addTag() is provided. It has only one parameter, which is the tag value. For example, after calling this: WPLY.addTag("username_John")
The tag will be saved for the current recording, and you will be able to find it more easily.
You can also use a HTML5 data attribute to track clicks on specific elements using data-wply-click-tag, for example:
Examples
Tagging visitors that scrolled at least once on a page:
Last updated