Shopify
Add Nordax integration to your Shopify store using theme.liquid and URL redirects.
1. JSON-LD Structured Data
Go to Online Store → Themes → Edit code, open theme.liquid, and add this before </head>:
theme.liquid
{%- if template == 'index' -%}
<script
src="https://cdn.nordax.ai/cdn/entity/{slug}.js"
defer
></script>
{%- endif -%}The Liquid conditional ensures the script only loads on your homepage. Remove the condition to load on all pages.
2. Trust Badge
Create a custom Liquid section or add this snippet to your footer:
- Go to Online Store → Themes → Customize
- Navigate to the Footer section
- Add a Custom Liquid block
- Paste the badge embed code:
<div id="nordax-badge" data-entity="{slug}"></div>
<script src="https://cdn.nordax.ai/cdn/badge/embed.js" defer></script>3. llms.txt Hosting
Shopify doesn't allow uploading files to the web root, so use a URL redirect:
- Go to Settings → Navigation → URL Redirects
- Click Create URL redirect
- Set redirect from
/llms.txt - Set redirect to
https://entities.nordax.ai/{slug}/llms.txt
Shopify creates a 301 redirect, which is ideal for SEO and AI crawler discovery. Since the target is a live Nordax endpoint, the content always stays current.