Some templates are provided out of the box and are fully functional with best-practice UX. We recommend using the defaults in most cases, because these templates evolve frequently and automatically receive improvements.If your theme has a use case that requires custom behavior or UI, you can override any of the templates below by adding a file with the same path and filename in your theme.Available overrides#
| Template path (add this to your theme to override) |
|---|
templates/account_profile.jinja |
templates/account_orders.jinja |
templates/account_wishlist.jinja |
templates/loyalty_program.jinja |
These ship enabled by default. If you don’t add a file, the system version is used automatically.
How overriding works#
1.
Create the file in your theme at the exact path shown above.
2.
Your file takes precedence over the built-in version.
3.
Remove or rename your file any time to revert to the system default.
All overridable templates should extend your base layout and can use the same sections/components you use elsewhere:{% extends "layout.jinja" %}
{% block page_title %}My Account{% endblock %}
{% block content %}
<section class="account">
<h1>{{ _("Profile") }}</h1>
{# Your custom UI here. Built-in data objects remain available. #}
</section>
{% endblock %}
Modified at 2026-02-17 07:02:10