Hi, i’m trying to track pressing the buttons on the quick action bar, so far this is the code i tried to implement:
import wixWindow from ‘wix-window’ ;
export function quickActionBar1_itemClicked(event) {
wixWindow.trackEvent( “WhatsappCall” , {
“name” : “Button” ,
“category” : “button”
});
}
I defined an event on the Proporties of the quick action bar - quickActionBar1_itemClicked (onItemCliked).
I have a Facebook pixel connected to the domain.
I don’t see any data on the pixel when I test the event.
Did i do something wrong? do I look for track data on the wrong place?
Thanks!