Skip to main content

Documentation Index

Fetch the complete documentation index at: https://voyage-theme.fasil.in/llms.txt

Use this file to discover all available pages before exploring further.

Voyager ships seven editorial customer-account templates. Each is a JSON template wrapping a single main-customer-* section, styled in the same vocabulary as the rest of the storefront — script accent on every heading, eyebrow tracked-out caps, serif body, navy ink, paper background. Before listing them, the most important decision a merchant makes:

Classic vs New customer accounts

Shopify offers two customer-account modes. The choice is set in admin under Settings → Customer accounts → Login experience, and it determines whether Voyager’s templates are used at all.
The historical Shopify experience. Customers create accounts with email + password, log in, view their order history and addresses. The storefront renders Voyager’s editorial templates — passport-style order detail, script-prefixed welcome, magnetic CTA buttons.Use Classic when:
  • The editorial styling is part of the brand promise
  • Customers expect a username/password sign-in
  • You want the account dashboard to feel like the rest of the storefront
Once a merchant enables New customer accounts, Voyager’s seven customer templates stop rendering on the storefront. They remain in the codebase — switching back to Classic restores them — but they’re inert while New customer accounts is on.
The seven templates documented below assume Classic is enabled.

The seven templates

#TemplateSectionRenders
1customers/login.jsonmain-customer-loginSign-in form + forgot-password sub-form
2customers/register.jsonmain-customer-registerNew account form
3customers/account.jsonmain-customer-accountDashboard — order history + default address
4customers/order.jsonmain-customer-orderSingle order detail, passport-style
5customers/addresses.jsonmain-customer-addressesAddress book — list, add, edit, delete
6customers/reset_password.jsonmain-customer-reset-passwordPassword reset form
7customers/activate_account.jsonmain-customer-activate-accountFirst-time account activation

Editorial vocabulary

Every customer template shares a typographic vocabulary:
  • Script prefix — an accent line in the accent font (“Welcome back”, “Bonjour”, “Almost there”, “Welcome aboard”). Set per-template via script_prefix setting.
  • Serif heading — the main label (“Sign in”, “Your account”, “Reset password”). Set via heading.
  • Eyebrow — tracked-out caps above the heading (“Account”, “New customer”, “Reset”). Set via eyebrow.
  • Magnetic CTA — every primary submit wraps in a .magnetic span, mirroring the PDP add-to-bag.

Notable layouts

Account dashboard (customers/account.json)

A personalized “Bonjour, [first name]” greeting opens the page. Below it, a two-column dashboard:
  • Main column — paginated order history table (Order #, Date, Payment, Fulfillment, Total). 10 orders per page.
  • Aside column — the customer’s default address as a typeset <address> block, with a link to manage all addresses.
When the customer has no orders yet, the empty state shows a “Browse the collection” magnetic button instead of the table.

Order detail (customers/order.json) — passport style

The most distinctive customer template in Voyager. The order number renders in the script accent (“VY-12041”) as the headline, with “Order detail” as the subtitle — designed to read like a vintage passport stamp. Below the headline, a passport-style definition-list strip:
TermValue
Payment statusorder.financial_status_label
Fulfillment statusorder.fulfillment_status_label
Itemsorder.item_count
Total`order.total_pricemoney`
Then the line-items table — image, title, selling-plan note, unit-price note, quantity, unit price, total. The bottom of the page renders shipping and billing addresses side by side as <address> definition lists.

Addresses (customers/addresses.json)

Each saved address renders as a card with the address typeset like a letter. Buttons under each card: Edit, Make default, Delete. A ”+ Add a new address” CTA at the top of the list opens an inline form.

Reset and activate (customers/reset_password.json, customers/activate_account.json)

Both follow the same two-field form pattern as login — script accent above the field, magnetic submit button below, divider rule, return-to-sign-in link in the footer row. Activation accepts a token from the activation email; reset accepts a new password twice.

Customizable section settings

Most customer sections expose three settings — eyebrow, script_prefix (or script_greeting), and heading. A merchant who wants to retune the editorial voice across all customer pages can do so in seven small edits, each one through the Theme Editor. For the login template:
eyebrow
text
default:"Account"
script_prefix
text
default:"Welcome back"
heading
text
default:"Sign in"
intro
textarea
Optional paragraph beneath the heading.
button_label
text
default:"Sign in"
For the account dashboard:
eyebrow
text
default:"Account"
script_prefix
text
default:"Bonjour"
Followed by the customer’s first name if available — “Bonjour, Marco”.
heading
text
default:"Your account"
The other customer sections follow the same three-setting pattern. See the sections reference for each one’s exact schema.

What’s next

Sections — customer

Each customer section’s exact schema.

New customer accounts mode

Troubleshooting the New customer accounts trade-off.