Reputation: 35090
I measure standard and custom Facebook events on my website. One of the very important event is PageView
. My site is a React site, so I included: react-facebook-pixel
and this is how I measure:
ReactPixel.pageView();
If I turn off this line ReactPixel.pageView()
, I still can see values at PageView. How is it possible? Does PageView statistics shows only event when ReactPixel.pageView();
is called, or it takes into account other things as well?
Upvotes: 0
Views: 667
Reputation: 621
Facebook Pixel implicit PageView
is it helpful? As it states: "I find that as soon as I init my pixel fbq('init', '1234567890');, a PageView event is being sent implicitly."
edit: fbq
is also implemented in react-facebook-pixel
regardless what I posted is an angular example
.
Upvotes: 0