> For the complete documentation index, see [llms.txt](https://reputon.gitbook.io/reputon-help/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://reputon.gitbook.io/reputon-help/customer-reviews-app/how-to/add-customer-reviews-widget-manually.md).

# Add Customer Reviews widget manually

For Shopify 1.0 (vintage) themes that don't support the drag-and-drop Theme Editor, you can add the widget directly via code. There are three ways to do it, pick the one that fits your setup.

**Is this for you?** If your Shopify theme was built before Shopify 2.0 (released 2021), it won't have the App Blocks feature. In that case, you'll need to add the widget code manually. Modern Online Store 2.0 themes can add widgets directly via **Online Store → Edit Theme** without any code.

#### Step 1: Copy your widget code <a href="#copy-code" id="copy-code"></a>

1. Click `Add widget manually`
2. Click `Copy Code`

<figure><img src="/files/BxGBDnOBlFpYMHB8Ul3l" alt="rate us widgets in customer reviews"><figcaption></figcaption></figure>

<figure><img src="/files/QpoCnhSiDQzEQPxNcoJU" alt=""><figcaption></figcaption></figure>

#### Step 2: Choose your installation method <a href="#choose-method" id="choose-method"></a>

There are three ways to add the widget. Choose based on your technical comfort level and where you want the widget to appear:

<table data-view="cards"><thead><tr><th align="center"></th></tr></thead><tbody><tr><td align="center"><strong>Custom Liquid</strong><br><br>Add a block in the Theme Editor. No file editing needed.</td></tr><tr><td align="center"><strong>Custom HTML block</strong><br><br>Add a content block and paste HTML. Good for page builders.</td></tr><tr><td align="center"><strong>Edit Code</strong><br><br>Paste directly into theme files. Most flexible, requires dev skills.</td></tr></tbody></table>

#### **Custom Liquid**

{% hint style="info" %}
**Recommended for most stores.** Custom Liquid requires no developer skills and keeps your widget manageable through the visual editor. If Custom Liquid isn't available in your theme's section list, try the HTML Block method instead.
{% endhint %}

The easiest method, it works without touching any theme files. Available in most Shopify themes via the Theme Editor.

1. Open Online Store → Edit Theme
2. Go to the page where you want the widget
3. Click Add section → `Custom Liquid`
4. Paste your widget code into the Liquid field
5. Click `Save`

<figure><img src="/files/KfeTW8yL8CrjfSRswOJu" alt=""><figcaption></figcaption></figure>

**Custom HTML block**

1. Open the Theme Editor and go to the target page
2. Add a `Custom content` block
3. Add an HTML block inside the content section
4. Paste your widget code into the HTML field
5. Click `Save`

**Edit code**

{% hint style="warning" %}
**Developer method.** Editing theme files directly can break your storefront if done incorrectly. We recommend working with your in-house developer or [contacting Reputon support](mailto:support@reputon.com) for assistance.
{% endhint %}

1. Go to Online Store → Themes → Edit Code
2. Open the correct theme file
3. Paste the widget code at the right location
4. Click `Save` and verify on the storefront

{% hint style="warning" %}
We recommend contacting your in-house developers or the Reputon team to correctly add the code to your theme. If you want to add the widget to specific pages, the following files are usually used:

1. **Homepage:** `index.liquid`
2. **Specific place on every page of your website:** `theme.liquid`
3. **Product pages:** `product.liquid`
4. **Bottom of every page:** `sections/footer.liquid`

Please note that file names may vary depending on your theme, such as `main-product.liquid` instead of `product.liquid`.
{% endhint %}

For example, to add the widget to every page under the main content, insert the code into the `theme.liquid` file within the `main` block, directly below `{{ content_for_layout }}`.

<figure><img src="/files/3Rp2Ox2iTff2wEcDFuHd" alt=""><figcaption></figcaption></figure>

The result: The widget will be displayed under the main content on every page.

<figure><img src="/files/81PXbhVpBYhV6RBzVGHe" alt=""><figcaption></figcaption></figure>

***

{% hint style="info" icon="comments" %}
**Questions about the widget or need assistance? We're here to help:** [**support@reputon.com**](mailto:support@reputon.com) **or** [**live chat**](https://go.crisp.chat/chat/embed/?website_id=d24ef16e-6e05-49e9-bd59-a6f3bde0658a)
{% endhint %}


---

# 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, and the optional `goal` query parameter:

```
GET https://reputon.gitbook.io/reputon-help/customer-reviews-app/how-to/add-customer-reviews-widget-manually.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
