> For the complete documentation index, see [llms.txt](https://help.accentuate.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.accentuate.io/use-case-guides/kids-and-baby/developmental-stage.md).

# Developmental stage

### &#x20;OVERVIEW &#x20;

The Developmental Stage field classifies which cognitive, physical, emotional, or social developmental milestones a product is designed to support. It goes beyond chronological age to describe the child's readiness — a dimension that parents, educators, and child development professionals actively seek when selecting products.

Two children of the same age may be at different developmental stages. This field acknowledges that reality and makes your catalog useful to parents who think in terms of what their child is working on, not just how old they are. It is especially powerful for educational toys, books, games, and therapeutic products.

\ <br>

&#x20; BUSINESS VALUE &#x20;

Why this field matters

* Educators and therapists search specifically by developmental milestone, not by age bracket
* Parenting content and gift guides are increasingly organized around developmental stages
* Products positioned around developmental outcomes command higher perceived value and price points
* Cross-sell logic ("if buying a fine motor toy, show sensory processing products") requires stage data
* Learning-focused parents filter by developmental benefit as a primary purchase criterion
* Stage data enables meaningful "What is my child ready for next?" recommendation flows

&#x20; ACF SETUP &#x20;

How to configure this field in Accentuate Custom Fields

| Where       | ACF dashboard → Templates tab → Product scope → Add new field             |
| ----------- | ------------------------------------------------------------------------- |
| Label       | Developmental Stage                                                       |
| Name / Key  | developmental\_stage                                                      |
| Namespace   | accentuate (default)                                                      |
| Field type  | Shopify >> Single-line text (List)                                        |
| Multi-value | Yes — a product can support multiple developmental domains simultaneously |

<br>

| Note: Shopify >> List type allows each developmental stage to be a separate, filterable value. This is important for cross-stage products like open-ended building sets that span toddler through school-age stages. |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

&#x20;&#x20;

\
\ <br>

STEP-BY-STEP IN ACF &#x20;

1. Open ACF, go to Templates tab and select the Product scope
2. Click "Add new field"
3. Label: "Developmental Stage" — Key auto-fills as "developmental\_stage"
4. Namespace: leave as "accentuate"
5. Field type: Shopify >> Single-line text (List)
6. Enable "Allow multiple selections"
7. Click Done, then Save
8. Open an educational or toy product and confirm the field accepts developmental stage values

| Shopify admin (optional pinning): Pin in Shopify admin: Settings → Custom data → Products → Add definition. Namespace: "accentuate", Key: "developmental\_stage", Type: Single-line text (List). Once pinned, editors can fill in this field directly from the Shopify product page without opening ACF. |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

<br>

| Repeatability: Shopify >> List handles multi-stage products natively. No repeatable section configuration needed. |
| ----------------------------------------------------------------------------------------------------------------- |

&#x20; REFERENCE VALUES &#x20;

Example values — adapt to your catalog

| Value                   | When to use                                                                   |
| ----------------------- | ----------------------------------------------------------------------------- |
| Newborn / Sensory       | Birth to 3 months; visual tracking, auditory stimulation, tactile exploration |
| Early exploration       | 3–12 months; grasping, mouthing, cause-and-effect discovery                   |
| Toddler / Early motor   | 1–2 years; walking, stacking, simple problem-solving, early language          |
| Pre-school              | 2–4 years; symbolic play, early counting, colour and shape recognition        |
| Early school age        | 5–7 years; reading readiness, logic, rule-based games, social play            |
| Middle childhood        | 7–10 years; abstract thinking, strategy, collaboration, complex construction  |
| Pre-teen                | 10–12 years; identity exploration, advanced STEM, social reasoning            |
| Fine motor development  | Precision hand-eye coordination; applicable across multiple age stages        |
| Gross motor development | Large muscle movement, balance, coordination; outdoor and active products     |
| Social-emotional        | Empathy, sharing, conflict resolution; cooperative games and roleplay         |

&#x20;&#x20;

<br>

BEST PRACTICES &#x20;

* Use developmental stage alongside age range — they complement, not replace, each other
* Consult product packaging and manufacturer guidance for developmental stage claims
* For open-ended products, list all stages the product genuinely supports
* Do not confuse developmental stage with educational benefit — stage is a readiness level, benefit is an outcome
* For therapeutic or specialist products, use the clinical terminology your target audience expects

&#x20; COMMON MISTAKES &#x20;

* Listing every developmental stage to maximise visibility — specificity is the value of this field
* Ignoring this field for books and games — developmental positioning is especially powerful there
* Using "All stages" as a default to avoid making a decision
* Conflating age range and developmental stage: "3 years" is an age, "Pre-school" is a stage
* Not keeping terminology consistent: "Fine motor" and "Fine motor skills" will split filter results

&#x20; IN CONTEXT &#x20;

| Tactile Sorting Rings — Sensory Play Set                                                |
| --------------------------------------------------------------------------------------- |
| Age range:   6–12 months, 1–2 years                                                     |
| Developmental stage:   Early exploration, Toddler / Early motor, Fine motor development |
| Material safety:   BPA-free silicone, Food-grade dyes, No sharp edges                   |
| Educational benefit:   Sensory processing, Colour recognition, Fine motor skills        |
| Washability:   Dishwasher safe (top rack)                                               |

\
\ <br>

Developer Implementation

| Liquid note: Shopify >> List type — use .value for the array. Combine with age\_range for the most useful storefront display. |
| ----------------------------------------------------------------------------------------------------------------------------- |

\ <br>

Liquid — Storefront Rendering

```
{% comment %}
  Developmental Stage — Shopify >> Single-line text (List)
  Namespace: accentuate | Key: developmental_stage
{% endcomment %}


{% assign dev_stage = product.metafields.accentuate.developmental_stage.value %}


{% if dev_stage != blank %}
  <div class="dev-stage-list">
    <span class="label">Developmental stage:</span>
    {% for stage in dev_stage %}
      <span class="stage-tag">{{ stage }}</span>
    {% endfor %}
  </div>
{% endif %}


```

<br>

| Pro tip: Build a "What is my child ready for?" quiz. Let parents select from developmental stage values, then use Shopify storefront API to filter products by metafield accentuate.developmental\_stage. Pair with age\_range for a two-variable recommendation engine built entirely on ACF metafields. |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

&#x20;&#x20;

<br>

SEE ALSO &#x20;

* Age range — the chronological anchor for developmental stage
* Educational benefit — the specific learning outcome that the developmental stage enables
* Use case — how the product is actually used in a developmental context

| Full ACF documentation: help.accentuate.io                             |
| ---------------------------------------------------------------------- |
| Metafield Definitions → Fields → Field data type → Shopify field types |

<br>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.accentuate.io/use-case-guides/kids-and-baby/developmental-stage.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
