Okay everyone am I missing something, is it one facebook pixel that tracks everything or do I need to create multiple pixels. I am just trying to warp my head around this.
1 pixel per account tracks everything in this account- all your campaigns, all your links and custom events no matter how many different places you put that pixel in
Is there a way to set a conversion even or do I just put it on every page and give get it placed as a conversion event?
This is your best place to get started https://developers.facebook.com/docs...l-events/v2.12. Give it a comprehensive read before you go live with traffic because you need to know exactly what you're doing and what you are tracking
The way I've used it in a COD affiliate network I'm working with is they have a separate field for FB conversion pixel on their offer page. I just copypaste the code from FB campaign, which then fires on the "thank you" after the order is made. Pretty simple and very helpful.
Facebook "pixels" are just Javascript code.
Javascript code can be read and understood so that you have an idea what is actually happening - it's not so alien that its impossible to understand.
The Javascript code will "init" a pixel ID, which is your pixel ID that it declares first.
fbq('init', '<FB_PIXEL_ID>');
fbq('track', "PageView");
fbq('track', 'Purchase', {currency: 'USD', value: 15.23});
Thanks Zeno I have used this information.
I will see over the next day if it works.