多个按钮 - 单页 - 没有数据层的事件序列化

multiple buttons - single page - event serialization without dataLayer

我的主页上有多个按钮 "Buy Now"。所有 "Buy Now" 按钮都会将用户带到 "same" 下一页(产品详细信息)

我在页面上没有任何数据层,所以我使用 CSS 选择器来触发 Adob​​e Analytics 事件。

我正在使用 'show'(不是点击)并启动 adobe analytics "event 1"。所以我们多次触发 "event 1" 因为有多个按钮。

有什么办法可以连载这个活动吗?例如通过event1:1234。我只是创建一个时间戳还是?我有什么选择可以将其计为每次网页浏览的单个事件?

我想这就是您要找的:https://marketing.adobe.com/resources/help/en_US/sc/implement/event_serialization_impl.html

摘录如下:

To use Event serialization, you must first enable it in Admin > Report Suite > [select report suite] > Edit Settings > Success Events. Then select which events you want recorded in the Unique Event Recording column. There are three different settings an event can be set to.

Always record event: This is the default behavior of all events when initially enabled. All events included in image requests will be sent directly to Analytics, including page reloads.

Record once per visit: An event with this setting enabled will only track the first instance of that event in a given visit. Once a new visit starts, each event with this setting enabled can be tracked again. This is an effective way to mitigate duplicate events via browser refreshes.

Use event ID: This setting allows the capability to associate each event with a unique ID. If Analytics sees an eventID it has already seen before with that variable, it will not be counted in reporting.

或者,我们使用 appendList 插件,这使得这完全没有痛苦。确保非重复事件就这么简单:

s.events = s.apl(s.events, "event999", ",", 1);

这是该插件的 link:https://marketing.adobe.com/resources/help/en_US/sc/implement/appendList.html