How to add third party tracking scripts to specific pages?

I’m trying to figure out how to add 3rd party tracking codes to specific pages. Can anyone point me in the right direction on how to do this? I need to implement “Deadline Funnel” for a few of our landing pages and their script needs to fire in the header of the page.

Hi @alright_ox, you can create a small react code component that renders this script into the head using for instance nextjs Head if that’s the framework you’re on

https://nextjs.org/docs/api-reference/next/head

And then insert that component into whichever pages you want

(If it doesn’t need to be in the head specifically, you could also insert a custom embed component from the component store)

Let me know if that helps!

This is GREAT and so helpful. Thank you.