Versionv1

Shopify

There is no public Shopify App Store listing yet. You can still run Intastellar Consents on a Shopify store by adding the same JavaScript snippet you would use on any site—placed in your theme’s Liquid layout so it loads on every storefront page.

Add the snippet in theme.liquid

  1. In Shopify admin go to Online Store → Themes.
  2. On your live theme, choose ⋯ → Edit code.
  3. Under Layout, open theme.liquid (or the main layout your theme uses).
  4. Paste the configuration block and script tag from Get Started (JavaScript) immediately after the opening <head> tag (before {{ content_for_header }} is fine, as long as both scripts run in <head>).

Use your real shop domain (or primary custom domain) for settings.rootDomain, your Intastellar company slug, privacy policy URL, logo, colours, and optional gtagId, matching the JavaScript guide and window.INTA schema.

Example shape (placeholders only—copy the full snippet from the JS guide):

<head>
  <script>
    window.INTA = {
      policy_link: "https://your-shop-domain.com/policies/privacy-policy",
      settings: {
        rootDomain: "your-shop-domain.com",
        company: "yourcompany",
        arrange: "ltr",
        color: "#000000",
        logo: "https://cdn.shopify.com/.../your-logo.png",
        design: "overlay",
        gtagId: "G-XXXXXXXXXX",
        requiredCookies: [],
        keepInLocalStorage: [],
      },
    };
  </script>
  <script src="https://consents.cdn.intastellarsolutions.com/uc.js"></script>
  {{ content_for_header }}

Shopify often serves assets from cdn.shopify.com; your logo can be a file from Content → Files or your theme assets. Use an https URL.

Checkout and customer accounts

Shopify checkout and customer account domains differ from your storefront host. The standard theme.liquid snippet covers the Online Store theme only. If you need the banner on checkout or new customer account UI, you will need additional placement or configuration where Shopify allows scripts for those surfaces (and may require Shopify Plus or supported checkout extensions)—treat that as a separate integration.

Shopify app (coming later)

A Shopify app is planned for easier install and configuration from the admin. Until it is published, theme editing is the supported path.

Privacy policy

By implementing the solution you agree to the cookie banner privacy policy.

Last updated