We have moved to a new and improved knowledge base. This article is no longer updated. Please click here to find the new version

Available on the Awesome plan 

A Reviews page is a page that contains both reviews for your products and reviews for your store. These pages are usually called Reviews page, Happy Customers page, and many other variations.

In this guide, we'll show you 5 easy steps to create your own Reviews page in Shopify's Vintage themes.

Step 1: Enable Judge.me core snippet

  • Go to Online Store > Themes > Customize.
  • Go to App embeds and enable Judge.me Core Snippet.
  • Click Save.

Step 2: Create a Reviews template

  • Go back to Online Store > Themes.
  • Click ... > Edit code.
  • Click Add a new template.
  • Select Page as the template and Liquid as the file type.
  • Name your template "judgeme_reviews".
  • Click Done.

Step 3: Add Judge.me code

  • In the file you've just created, press Ctrl+A then paste the following code into the file.
  • Click Save.
<!-- Start of Judge.me code --> 
<div id='judgeme_all_reviews_page' class="page clearfix jdgm-all-reviews-page">
  <div class="jdgm-all-reviews-page__wrapper">
    <h1 class="jdgm-all-reviews-page__title">{{ page.title }}</h1>
    <div class='jdgm-all-reviews-page__description'>{{ page.content }}</div>
    <article class='jdgm-widget jdgm-all-reviews-widget'>
      <style class='jdgm-temp-hiding-style'>.jdgm-all-reviews-widget{ display: none }</style>
      {{ shop.metafields.judgeme.all_reviews_header }}
      <div class='jdgm-all-reviews__body'>
      {% assign prefix = 'all_reviews_' %}
      {% for count in (0..65535) %}
        {% assign metafield_key = prefix | append: count %}
        {% assign current_metafield = shop.metafields.judgeme[metafield_key] %}
        {% unless current_metafield %} {% break %} {% endunless %}
        {{ current_metafield }}
      {% endfor %}
      </div>
    </article>
  </div>
</div>
<!-- End of Judge.me code -->

Step 4: Assign the template to your page

  • From your Shopify admin, go to Online Store > Pages.
  • Click Add page.
  • Give the page a title (e.g. "Happy Customers").
  • In the Theme template section on the right, select judgeme_reviews.
  • Click Save.

Step 5: Customize your Reviews page

Once you have created your Judge.me Reviews page, you can also add descriptions and optimize the SEO for this page in your Shopify admin.

You can also add this new page to your store's navigation bar using the Shopify Navigation menu.