How to Set Up Your Non Shopify or Shopify Headless Account

Last updated: August 19, 2026

Where Does the Jurni Core Script Go? Always the <head>

The Jurni Core Script must load from the <head> of every page on your site. Not the footer, not the end of the body, not a single template.


The Script

html

<script type="text/javascript" src="https://d3djbgmgf0l8ev.cloudfront.net/scripts/jurni-core.min.js" async></script>


Why the <head>

  • The script needs to run before a shopper interacts with the page, so the visit is identified from the first moment

  • Loading it later means early sessions are missed and orders attribute to the wrong entry source

  • The async attribute keeps it from blocking your page render, so head placement carries no speed cost


Sitewide, Not Page by Page

The script has to be present on every page, including product pages, collection pages, and cart. If it renders on some pages and not others, attribution will look partially broken rather than fully broken, which is harder to spot.


Confirm It Is in the Head

  1. Open your live store and right click, then select View Page Source

  2. Search for jurni-core

  3. Confirm the tag appears above the closing </head> tag

Repeat on a product page to confirm site wide coverage.