Floodlight tags operate inside of iframes where we cannot set a first party cookies and podsights does not use 3rd party cookies. We use the following image pixels for floodlights.
You will need to update the following html code with your pixel id and any value information for a purchase and lead events. A finished example would look like:
<img
height="1"
width="1"
style="display:none"
src="https://ping.pdst.fm/tr.gif?key=aaaaaaaaaaaaaaaaa&a=purchase&value=20&discount_code=NPR&order_id=123456&currency=USD"
/>
<img
height="1"
width="1"
style="display:none"
src="https://ping.pdst.fm/tr.gif?key={pixel-id}&a=init"
/>
You may also use the following code to measure additional events.
A user viewed a product:
<img
height="1"
width="1"
style="display:none"
src="https://ping.pdst.fm/tr.gif?key={pixel-id}&a=product"
/>
A user added a product to the cart:
<img
height="1"
width="1"
style="display:none"
src="https://ping.pdst.fm/tr.gif?key={pixel-id}&a=addtocart"
/>
A user initiated a checkout:
<img
height="1"
width="1"
style="display:none"
src="https://ping.pdst.fm/tr.gif?key={pixel-id}&a=checkout"
/>
A user purchased products:
<img
height="1"
width="1"
style="display:none"
src="https://ping.pdst.fm/tr.gif?key={pixel-id}&a=purchase&value={value}&discount_code={discount_code}&order_id={order_id}&currency={currency}"
/>
A user filled out a contact form or signed up for your service:
<img
height="1"
width="1"
style="display:none"
src="https://ping.pdst.fm/tr.gif?key={pixel-id}&a=lead&type={type}&value={value}&currency={currency}"
/>