# Display option selections on customer account page

Follow the steps below on how to display option selections in each order on the customer account page.

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-9c9a6df15ee7a7cff9d99192cb36aa6a7477a743%2Fdocsassets555e25e4e4b027e1978e1c9aimages5e18ca942c7d3a7e9ae60cc4file-nwzlawzsiu.png?alt=media)

1\. From your Shopify admin, click Online Store, then click Themes.

2\. Find the theme you want to edit, click the **Actions** button, then click **Edit code**.

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FstG3DdpAnnwVArGFiCXj%2Fimage.png?alt=media&#x26;token=ea677d51-58f8-4c8b-9d94-599436d101db" alt=""><figcaption></figcaption></figure>

3\. Under the **Templates** folder, navigate into the **customers/order.liquid** file.

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-983716f9c6bba0921b2b2eff913dcd72cb5d27f6%2Fdocsassets555e25e4e4b027e1978e1c9aimages5e18cd7304286364bc93be0dfile-wf894tfihd.png?alt=media)

4\. In this file, locate the following line of code.

```liquid
{{ line_item.title | link_to: line_item.product.url }}
```

5\. Copy and paste the following snippet after the line of code.

```liquid
{% for p in line_item.properties %}
  {% if p.first contains '_io_' %}
    {% continue %}
  {% endif %}
  {% unless p.last == blank %}
    <br />{{p.first}}: {{ p.last }}
  {% endunless %}
{% endfor %}
```

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-567427a19dba2dfe97ee81ac39666443a5628089%2Fdocsassets555e25e4e4b027e1978e1c9aimages5e18cc1104286364bc93bdf9file-sgpqe0iqpg.png?alt=media)

6\. Save your changes.
