> For the complete documentation index, see [llms.txt](https://ryviu.gitbook.io/ryviu-document/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ryviu.gitbook.io/ryviu-document/guides-for-shopify-users/integration/themes/debutify.md).

# Debutify

Debutify theme is one of the highest-converting free Shopify themes. It comes with a fast loading speed, mobile responsiveness, and conversion-boosting add-ons.&#x20;

Please refer to the following tutorial if you cannot see the star review on your single product page and collection page and want to include star reviews for your Debutify Shopify theme.

1. Login to Shopify admin, open **Online Store** > **Themes**
2. In **Live theme**, click **Actions**, select **Edit code**

![](/files/-MJfAnemXdLrg-SOQz8G)

&#x20;     3\. Find and open the file **review-badge.liquid** then add Ryviu snippet codes by using the guide below:

**Add stars review for single product page:**

Please add the following code under this line " **\<!-- INSERT \[PRODUCT PAGE] REVIEW BADGE HERE -->** "

```markup
<div class="review-widget">  
	<ryviu-widget-total product_id="{{product.id}}" handle="{{product.handle}}" reviews_data="{{product.metafields.ryviu.product_reviews_info  | escape  }}"></ryviu-widget-total>
</div>
```

**Add stars review for products on collection page:**

Please add the following code under this line " **\<!-- INSERT \[PRODUCT GRID] REVIEW BADGE HERE -->** "

```markup
<div class="ryviu-collection">
	<ryviu-widget-total collection=1 product_id="{{product.id}}" handle="{{product.handle}}" reviews_data="{{product.metafields.ryviu.product_reviews_info  | escape  }}" ></ryviu-widget-total>
</div>  
```

The finished code will look like this:

```markup
  <div class="review-badge">  
    {% if badge_template == "product" %}    
    <!-- INSERT [PRODUCT PAGE] REVIEW BADGE HERE -->         
    <!-- RYVIU APP :: WIDGET-TOTAL -->        
    <div class="review-widget">
        <ryviu-widget-total reviews_data="{{product.metafields.ryviu.product_reviews_info  | escape  }}" product_id="{{product.id}}" handle="{{product.handle}}"></ryviu-widget-total>
    </div>
    <!-- RYVIU APP -->  
    {% elsif badge_template == "grid" %}
    <!-- INSERT [PRODUCT GRID] REVIEW BADGE HERE -->
    <div class="ryviu-collection">
        <ryviu-widget-total collection=1 reviews_data="{{product.metafields.ryviu.product_reviews_info  | escape  }}" product_id="{{product.id}}" handle="{{product.handle}}"></ryviu-widget-total>
    </div>
    {% endif %}
</div>
```

That's it. Hopefully, this guideline will help you tackle this issue.

Should you have any questions, please let us know via Live chat.


---

# 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://ryviu.gitbook.io/ryviu-document/guides-for-shopify-users/integration/themes/debutify.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.
