I just added a custom event to the fbq function, for example fbq('track', 'ViewEnHomePage’). Workable, custom events are monitored, but in the developer console I get an error that this is an unknown event. I really landed on this question in search of how to debug it, so if you don’t have a too complicated client-side user event, this should work.
EDIT I
looked at the link you provided, and there are special reporting on events
fbq('trackCustom', '<CustomEventName>', {
custom_param1: 'ABC',
custom_param2: 123,
value: 10.00,
currency: 'USD'
});
Will this work?
source
share