Back to Shopify Liquid
Reviews v3
Shopify Liquid

Reviews v3

Drop this Shopify Liquid snippet into your theme to add the reviews v3 block. Copy the code below, paste it into your theme files, save and you're done.

40 lines · 0.6 KB
Shopify Liquid
1<div class="reviews-container">
2 <div class="star-reviews">
3 <img
4 class="shopify-image"
5 width = "65" src="https://cdn.shopify.com/s/files/1/0798/4267/2987/files/Revive_39.png?v=1733346031"
6 alt="shopifyImage"
7 />
8 </div>
9 <span class="text-grey">
10rated <strong>4.5/5</strong> based on <strong>+650 Reviews</strong>
11</span>
12</div>
13
14<style>
15 .reviews-container {
16 display: flex;
17 align-items: center;
18
19 }
20
21
22 .text-grey {
23 font-weight: normal;
24 font-size: 10px;
25 color: #868686;
26 line-height: 0px;
27
28 }
29
30 .text-grey strong {
31 font-weight: 800;
32
33color: #2e2f3c
34 }
35 .star-reviews{
36 width: 65px;
37margin-right: 5px;
38 }
39
40</style>

Related snippets