Hi,
I have followed this official tutorial and managed to setup the tracking successfully for the first button.
But I have 2 download buttons to track, I duplicated the button and edited the code for the 2nd button but am unable to get it to work. Have include the code below.
Secondly, how do you check back the tracking number in GA? I setup the first tracking few hours ago but the GA > Reports > Events only shows active users and the last 30mins. Where in GA can I see the overall events recorded?
Any help is greatly appreciated!
import wixWindow from 'wix-window';
export function dlcuratorform2020_click(event) {
wixWindow.trackEvent("CustomEvent", {
event:"Funnel",
eventCategory:"Download IMPART 2020 Curator Form",
eventAction:"Downloads CU",
eventLabel: event.target.label,
});
//Add your code for this event here:
}
export function dlvaform2020_click(event) {
wixWindow.trackEvent("CustomEvent1", {
event:"Funnel1",
eventCategory:"Download IMPART 2020 VA Form",
eventAction: "Downloads VA",
eventLabel: event.target.label,
});
//Add your code for this event here:
}