# Registrations In Account Area

For logged in customer, its possible to show their registered products in the account area or anywhere that's suitable. This will required some knowledge of shop's theme and able to make changes to the theme's HTML.

Here are the steps for putting product registrations in account area:

* Go to Shop Admin > Online Store > Themes
* Select the Edit HTML/CSS on the top right corner

![](/files/-M4QrswzHrzpVwRSDCPc)

* Locate the template registration should in (e.g customers/account.liquid - This is the same account page that shows order history)

![](/files/-M4Qrsx0i76RhUjbnPYl)

* Place the following code into the right place - Make sure it doesn't break the HTML, always good to place it after close tag

```
<div id="my-product-registration"></div>
<script type="text/javascript">
window.productReg = {
        customer: {
                id: {{ customer.id | json }},
                email: {{ customer.email | json }},
                address: {{ customer.default_address | json }},
                tags: {{ customer.tags | json }},
         }
}
</script>
<script type="text/javascript" src="https://product-reg.varify.xyz/dist/product-registration.js"></script>
```

* Now save the changes and check your changes in the frontend.


---

# Agent Instructions: 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://doc.product-reg.varify.xyz/v1-shopify-product-registration/admin/settings/registration-in-account.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.
