Hunt-Gate

{ "sections": { "main": { "type": "hunt-gate", "settings": { "required_tag": "hunt_level1", "next_url": "/pages/steel-trial-2k7v9q", "page_title": "THE RITUAL BEGINS", "intro_text": "You found the hidden door. Entry requires proof of possession.", "rules_title": "RULES", "rules_text": "1) Physical CD/Vinyl owners only.\n2) Don’t spoil clues publicly.\n3) One entry per person.\n4) Proof required to proceed.", "prizes_title": "PRIZES", "prizes_text": "Grand Prize: [YOUR GRAND PRIZE]\nRunner Ups: [YOUR RUNNER UPS]\nBonus: Secret content unlocked for finishers.", "youtube_embed_url": "https://www.youtube.com/embed/YOUR_UNLISTED_VIDEO_ID", "cta_not_tagged": "SUBMIT PROOF OF PURCHASE", "cta_tagged": "UNLOCK NEXT SEAL", "locked_hint": "Hint: The phrase you decoded is only the beginning.", "unlocked_text": "The first seal breaks. Proceed—quietly.", "proof_email_subject": "HUNT ACCESS REQUEST (Level 1)", "proof_email_body": "Name:\nEmail (Shopify account email):\nProof (attach photo in reply):\nCD or Vinyl?:\nCity/State:\n" } } }, "order": ["main"] } {% comment %} Hunt Gate (server-side secure) - Requires customer login - Requires customer tag to reveal next URL/clue {% endcomment %}

{{ section.settings.page_title | escape }}

{{ section.settings.intro_text | escape }}

{% if section.settings.youtube_embed_url != blank %}
{% endif %}

{{ section.settings.rules_title | escape }}

{{ section.settings.rules_text | escape }}

{{ section.settings.prizes_title | escape }}

{{ section.settings.prizes_text | escape }}
{% if customer == nil %}

Access required. Log in to your customer account to continue.

After you log in, you can request access by submitting proof of CD/Vinyl ownership.

{% else %} {% assign has_tag = false %} {% for t in customer.tags %} {% if t == section.settings.required_tag %} {% assign has_tag = true %} {% endif %} {% endfor %} {% if has_tag %}

{{ section.settings.unlocked_text | escape }}

{{ section.settings.cta_tagged | escape }} (Do not share this link publicly.)
{% else %}

Not verified yet. You’re logged in as {{ customer.email | escape }}.

{{ section.settings.locked_hint | escape }}

{%- assign mailto_subject = section.settings.proof_email_subject | url_encode -%} {%- assign mailto_body = section.settings.proof_email_body | url_encode -%}

Attach a photo of your CD/Vinyl (with your name written on paper next to it). Once verified, you’ll be granted access automatically.

{% endif %} {% endif %}
{% schema %} { "name": "Hunt Gate", "settings": [ { "type": "text", "id": "required_tag", "label": "Required customer tag", "default": "hunt_level1" }, { "type": "text", "id": "next_url", "label": "Next stage URL", "default": "/pages/steel-trial-2k7v9q" }, { "type": "text", "id": "page_title", "label": "Title", "default": "THE RITUAL BEGINS" }, { "type": "textarea", "id": "intro_text", "label": "Intro text", "default": "You found the hidden door. Entry requires proof of possession." }, { "type": "text", "id": "youtube_embed_url", "label": "YouTube embed URL (unlisted)", "default": "https://www.youtube.com/embed/YOUR_UNLISTED_VIDEO_ID" }, { "type": "text", "id": "rules_title", "label": "Rules title", "default": "RULES" }, { "type": "textarea", "id": "rules_text", "label": "Rules text", "default": "1) Physical CD/Vinyl owners only.\n2) Don’t spoil clues publicly.\n3) One entry per person.\n4) Proof required to proceed." }, { "type": "text", "id": "prizes_title", "label": "Prizes title", "default": "PRIZES" }, { "type": "textarea", "id": "prizes_text", "label": "Prizes text", "default": "Grand Prize: [YOUR GRAND PRIZE]\nRunner Ups: [YOUR RUNNER UPS]\nBonus: Secret content unlocked for finishers." }, { "type": "text", "id": "cta_not_tagged", "label": "CTA (not verified)", "default": "SUBMIT PROOF OF PURCHASE" }, { "type": "text", "id": "cta_tagged", "label": "CTA (verified)", "default": "UNLOCK NEXT SEAL" }, { "type": "text", "id": "locked_hint", "label": "Locked hint text", "default": "Hint: The phrase you decoded is only the beginning." }, { "type": "text", "id": "unlocked_text", "label": "Unlocked text", "default": "The first seal breaks. Proceed—quietly." }, { "type": "text", "id": "proof_email_subject", "label": "Proof email subject", "default": "HUNT ACCESS REQUEST (Level 1)" }, { "type": "textarea", "id": "proof_email_body", "label": "Proof email body", "default": "Name:\nEmail (Shopify account email):\nProof (attach photo in reply):\nCD or Vinyl?:\nCity/State:\n" } ], "presets": [ { "name": "Hunt Gate" } ] } {% endschema %}