/** Shopify CDN: Minification failed

Line 23:7 Unexpected "text("
Line 52:2 Unexpected "\"@context\""
Line 56:4 Expected identifier but found "\"@type\""
Line 58:3 Unexpected ","
Line 61:4 Expected identifier but found "."
Line 64:63 Expected identifier but found whitespace
Line 97:69 Unterminated string token
Line 99:22 Unterminated string token
Line 102:2 Expected identifier but found "\"@context\""
Line 116:89 Expected identifier but found whitespace
... and 16 more hidden warnings

**/
ChatGPT Plus






Pasted text(20260811-040924).txt
Document
how come application ld isnt picking up specs and faq

Worked for 31s
The rendered page confirms the issue: your Product JSON-LD is outputting only the basic Product fields. It is not outputting either the Specifications or FAQ metafields at all.

Your current JSON-LD starts correctly as a Product and includes things like name, url, images, description, SKU, brand, category and offer data. 


But in the actual <script type="application/ld+json"> I checked, there is:

no additionalProperty

no PropertyValue specs

no FAQPage

no FAQ questions/answers

no reference to custom.specification

no reference to custom.product_faq

So this isn't Google/Application-LD failing to recognise them — Liquid isn't putting them into the schema in the first place.

Your schema currently effectively finishes around:

{
  "@context": "https://schema.org",
  "@type": "Product",
  ...
  "brand": {
    "@type": "Brand",
    "name": "SALT"
  },
  "category": "...",
  "offers": {
    ...
  }
}
There is nothing after that telling a crawler about your specs.

Specs
For your product.custom.specification metafield, you need the Product JSON-LD to create something like:

"additionalProperty": [
  {
    "@type": "PropertyValue",
    "name": "Brand",
    "value": "SALT"
  },
  {
    "@type": "PropertyValue",
    "name": "Thickness",
    "value": "5/4mm"
  },
  {
    "@type": "PropertyValue",
    "name": "Material",
    "value": "Neoprene"
  }
]
Simply displaying your specs inside the Specs tab does not automatically add them to Product structured data.

FAQ
Same problem with product.custom.product_faq.

Displaying:

<details>
  <summary>...</summary>
  <p>...</p>
</details>
on the product page doesn't automatically create FAQ structured data.

You'd separately need:

{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "...",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "..."
      }
    }
  ]
}
One other thing I noticed
This page is being rendered from your unpublished preview theme, not the published theme. Shopify reports the theme as adreno-2026-theme/main, ID 141487145094, with preview mode active. 


So if you recently modified the schema snippet, make sure you're modifying this preview theme's schema file/snippet, not only the live theme.

If you send me your current structured-data.liquid / Product schema Liquid code, I can fix it so it pulls both custom.specification and custom.product_faq correctly.


  {{ 'adreno-editorial-pages.css' | asset_url | stylesheet_tag }} is this correct for header

Yes — that syntax is correct if adreno-editorial-pages.css exists in your Shopify theme Assets folder:

{{ 'adreno-editorial-pages.css' | asset_url | stylesheet_tag }}
For the <head>, that’s a normal Shopify way to load a CSS asset.

For example:

<head>
  ...
  {{ 'adreno-editorial-pages.css' | asset_url | stylesheet_tag }}
  ...
</head>
It will render roughly like:

<link href="//cdn.shopify.com/..." rel="stylesheet" type="text/css" media="all">
One thing to check: if this CSS is only needed on certain editorial/page templates, it can be better to conditionally load it rather than site-wide. For example:

{% if request.page_type == 'page' %}
  {{ 'adreno-editorial-pages.css' | asset_url | stylesheet_tag }}
{% endif %}
But if you want the styles available across the entire theme, your original line is correct.



Pasted code.css
File
can you change this to all proxima nova

Done — I changed the CSS so the editorial page uses Proxima Nova throughout, including the headings that were previously Saira Condensed. 


Download the updated CSS


adreno-editorial-pages-proxima-nova.css
Code


Library
/
adreno-editorial-pages-proxima-nova.css


adreno-editorial-pages.css

@import url("https://fonts.googleapis.com/css2?family=Proxima+Nova:wght@400;500;600;700;800;900&display=swap");

.adreno-editorial-page {
  --adreno-deep-sea: #0e202f;
  --adreno-ocean: #007497;
  --adreno-accent: #e27338;
  --adreno-border: #d8e0e4;
  --adreno-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  --adreno-fallback-hero-image: url("https://adreno.com.au/cdn/shop/files/adrno-collection-banner_2000x.jpg?v=1678229854");
  margin: 0 auto;
  overflow-x: hidden;
  color: #263746;
  font-family: "Proxima Nova", Arial, sans-serif;
  background: #fff;
}

.adreno-editorial-page * {
  box-sizing: border-box;
}

.adreno-editorial-page .adreno-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  min-height: 0;
  height: clamp(260px, 28vw, 392px);
  display: flex;
  align-items: flex-end;
  background-color: #07131c;
  background-image: var(--adreno-fallback-hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(46px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.adreno-editorial-page .adreno-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--adreno-hero-image, var(--adreno-fallback-hero-image));
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 0;
}

.adreno-editorial-page .adreno-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 18, 27, 0.58), rgba(6, 18, 27, 0.18));
  z-index: 1;
}

.adreno-editorial-page .adreno-hero__inner,
.adreno-editorial-page .adreno-content {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.adreno-editorial-page .adreno-hero__inner {
  z-index: 2;
}

.adreno-editorial-page .adreno-kicker {
  display: inline-flex;
  gap: 10px;
  margin: 0 0 18px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.adreno-editorial-page .adreno-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--adreno-accent);
  align-self: center;
}

.adreno-editorial-page .adreno-hero__heading,
.adreno-editorial-page .adreno-editorial-heading,
.adreno-editorial-page .adreno-rte h2,
.adreno-editorial-page .adreno-rte h3 {
  font-family: "Proxima Nova", Arial, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.adreno-editorial-page .adreno-hero__heading {
  max-width: 1040px !important;
  margin: 0 !important;
  font-size: 88px !important;
  line-height: 0.94 !important;
  color: #fff !important;
  font-weight: 900 !important;
  overflow-wrap: anywhere !important;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.5) !important;
}

.adreno-editorial-page .adreno-content {
  padding: clamp(36px, 5vw, 74px) clamp(18px, 4vw, 56px);
}

.adreno-editorial-page .adreno-rte {
  max-width: 930px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.68;
}

.adreno-editorial-page .adreno-rte > p:first-of-type {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--adreno-deep-sea);
  font-weight: 650;
}

.adreno-editorial-page .adreno-rte h2,
.adreno-editorial-page .adreno-rte h3 {
  margin: 48px 0 16px;
  color: var(--adreno-deep-sea);
  line-height: 0.96;
}

.adreno-editorial-page .adreno-rte h2 {
  padding-left: 18px;
  border-left: 6px solid var(--adreno-accent);
  font-size: clamp(34px, 5vw, 60px);
}

.adreno-editorial-page .adreno-rte h3 {
  font-size: clamp(26px, 3vw, 40px);
}

.adreno-editorial-page .adreno-rte a {
  color: var(--adreno-ocean);
  font-weight: 800;
  text-underline-offset: 4px;
}

.adreno-editorial-page .adreno-editorial-grid {
  display: grid !important;
  grid-template-columns: repeat(var(--adreno-grid-cols, 2), minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 0 0 24px !important;
  align-items: stretch !important;
}

.adreno-editorial-page .adreno-editorial-grid--cols-2 {
  --adreno-grid-cols: 2;
}

.adreno-editorial-page .adreno-editorial-grid--cols-1 {
  --adreno-grid-cols: 1;
}

.adreno-editorial-page .adreno-editorial-grid--cols-3 {
  --adreno-grid-cols: 3;
}

.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.large-up--one-half),
.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-half) {
  --adreno-grid-cols: 2;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-left: 0 !important;
  gap: clamp(18px, 3vw, 30px) !important;
}

.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.large-up--one-half) > .grid__item,
.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-half) > .grid__item {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  padding-left: 0 !important;
  flex: 0 1 calc(50% - clamp(18px, 3vw, 30px) / 2);
}

.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-full .adreno-editorial-video),
.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-full .wmw__responsive-video) {
  display: block !important;
  width: 100%;
  max-width: none;
  margin: 0 auto 34px !important;
}

.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-full .adreno-editorial-video) > .grid__item,
.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-full .wmw__responsive-video) > .grid__item {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
}

.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-full .adreno-editorial-video) .blue-border,
.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-full .wmw__responsive-video) .blue-border {
  max-width: none;
}

.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-full .adreno-editorial-video) .adreno-editorial-video,
.adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-full .wmw__responsive-video) .wmw__responsive-video {
  width: 100% !important;
  margin-bottom: 16px !important;
}

.adreno-editorial-page .adreno-rte .subnav {
  grid-column: 1 / -1;
  margin: 0 0 26px;
}

.adreno-editorial-page .adreno-rte .subnav ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--adreno-deep-sea);
  list-style: none;
}

.adreno-editorial-page .adreno-rte .subnav li {
  margin: 0;
}

.adreno-editorial-page .adreno-rte .subnav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  background: var(--adreno-deep-sea);
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.adreno-editorial-page .adreno-rte .subnav .active a,
.adreno-editorial-page .adreno-rte .subnav a:hover {
  background: var(--adreno-ocean);
  color: #fff !important;
}

.adreno-editorial-page .adreno-rte .grid__item.adreno-editorial-grid {
  display: block !important;
}

.adreno-editorial-page .adreno-editorial-link-grid > a,
.adreno-editorial-page .adreno-editorial-tile-grid a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  padding: 13px 18px !important;
  background: var(--adreno-deep-sea) !important;
  border-left: 6px solid var(--adreno-accent) !important;
  color: #fff !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: var(--adreno-shadow) !important;
}

.adreno-editorial-page .adreno-editorial-link-grid > a:hover,
.adreno-editorial-page .adreno-editorial-tile-grid a:hover {
  background: var(--adreno-ocean) !important;
  color: #fff !important;
}

.adreno-editorial-page .adreno-rte .blue-border {
  height: 100%;
  width: 100%;
  padding: 0 0 16px;
  overflow: hidden;
  background: #fff;
  border-bottom: 4px solid var(--adreno-ocean);
  box-shadow: var(--adreno-shadow);
}

.adreno-editorial-page .adreno-rte .blue-border > a {
  display: block;
  color: var(--adreno-deep-sea);
  text-decoration: none;
}

.adreno-editorial-page .adreno-rte .blue-border img {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: 0 0 14px;
  object-fit: cover;
  box-shadow: none;
}

.adreno-editorial-page .adreno-rte .blue-border .wmw__responsive-video,
.adreno-editorial-page .adreno-rte .blue-border .adreno-editorial-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0 0 14px;
  overflow: hidden;
  background: #07131c;
  box-shadow: none;
}

.adreno-editorial-page .adreno-rte .blue-border iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block;
}

.adreno-editorial-page .adreno-rte .blue-border h3 {
  margin: 0 !important;
  padding: 0 14px 2px;
  color: var(--adreno-deep-sea);
  font-size: clamp(22px, 2.6vw, 34px) !important;
  line-height: 0.98 !important;
}

.adreno-editorial-page .adreno-editorial-tile-grid > div {
  position: relative !important;
  min-height: 360px !important;
  overflow: hidden !important;
  background: #07131c !important;
  box-shadow: var(--adreno-shadow) !important;
}

.adreno-editorial-page .adreno-editorial-tile-grid > div > img {
  width: 100% !important;
  height: 100% !important;
  min-height: 360px !important;
  margin: 0 !important;
  object-fit: cover !important;
  box-shadow: none !important;
}

.adreno-editorial-page .adreno-editorial-tile-grid > div > div {
  position: absolute !important;
  left: 50% !important;
  bottom: 22px !important;
  transform: translateX(-50%) !important;
  width: min(82%, 240px) !important;
}

.adreno-editorial-page .adreno-rte img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
  box-shadow: var(--adreno-shadow);
}

.adreno-editorial-page .adreno-rte ul,
.adreno-editorial-page .adreno-rte ol {
  padding-left: 1.35rem;
}

.adreno-editorial-page .adreno-rte li + li {
  margin-top: 0.48rem;
}

.adreno-editorial-page .adreno-table-wrap {
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid var(--adreno-border);
  box-shadow: var(--adreno-shadow);
  background: #fff;
}

.adreno-editorial-page .adreno-rte table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
}

.adreno-editorial-page .adreno-rte td,
.adreno-editorial-page .adreno-rte th {
  padding: 14px 16px;
  border: 1px solid var(--adreno-border);
  vertical-align: top;
}

.adreno-editorial-page .adreno-rte tr:first-child td,
.adreno-editorial-page .adreno-rte th {
  background: var(--adreno-deep-sea);
  color: #fff;
  font-weight: 900;
}

.adreno-editorial-page .adreno-rte iframe {
  max-width: 100%;
  border: 0;
}

.adreno-editorial-page .adreno-editorial-embed {
  margin: 30px 0;
  box-shadow: var(--adreno-shadow);
}

.adreno-editorial-page .adreno-editorial-embed iframe {
  width: 100%;
  min-height: 560px;
  display: block;
}

.adreno-editorial-page .adreno-editorial-video {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  background: #07131c !important;
  box-shadow: var(--adreno-shadow) !important;
}

.adreno-editorial-page .adreno-editorial-video iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.adreno-editorial-page[data-page-type="legal"] .adreno-rte {
  max-width: 860px;
  background: #fff;
  padding: clamp(22px, 4vw, 44px);
  border-top: 6px solid var(--adreno-accent);
  box-shadow: var(--adreno-shadow);
}

@media (max-width: 989px) {
  .adreno-editorial-page .adreno-hero {
    height: 340px;
    padding: 42px 24px;
  }

  .adreno-editorial-page .adreno-hero__heading {
    font-size: 64px !important;
  }
}

@media (max-width: 749px) {
  .adreno-editorial-page .adreno-hero {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    height: 300px;
    padding: 32px 18px;
  }

  .adreno-editorial-page .adreno-hero__heading {
    font-size: 40px !important;
    line-height: 0.98 !important;
  }

  .adreno-editorial-page .adreno-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .adreno-editorial-page .adreno-rte .grid:has(> .grid__item.large-up--one-half),
  .adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-half) {
    gap: 14px !important;
  }

  .adreno-editorial-page .adreno-rte .grid:has(> .grid__item.large-up--one-half) > .grid__item,
  .adreno-editorial-page .adreno-rte .grid:has(> .grid__item.one-half) > .grid__item {
    flex-basis: 100%;
  }

  .adreno-editorial-page .adreno-rte .subnav ul {
    grid-template-columns: 1fr;
  }

  .adreno-editorial-page .adreno-rte .subnav a {
    min-height: 44px;
    padding: 9px 10px;
    font-size: 12px;
  }

  .adreno-editorial-page .adreno-rte .blue-border {
    padding-bottom: 12px;
  }

  .adreno-editorial-page .adreno-rte .blue-border h3 {
    padding-inline: 10px;
    font-size: 20px !important;
  }

  .adreno-editorial-page .adreno-rte table {
    min-width: 460px;
  }
}
