Back to Shopify Liquid
Trustpilot Reviews
Shopify Liquid

Trustpilot Reviews

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

49 lines · 1.1 KB
Shopify Liquid
1<div class="trustpilot-container">
2 <div class="trustpilot-text">"Amazing"</div>
3
4 <img
5 class="trustpilot-image"
6 src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRqwTrpqlDxrYZ0pXL4aXXL4azowSSvjMZM2g&s"
7 alt="Trustpilot Image"
8 />
9
10 <div class="trustpilot-rating">Rated 4.4/5 on</div>
11
12 <img
13 class="trustpilot-logo"
14 src="https://cdn.shopify.com/s/files/1/0798/4267/2987/files/trustpilot-logo-sml_bf402230-0d05-4609-a750-c310e4720da2.png?v=1733179329"
15 alt="Trustpilot Image"
16 />
17</div>
18
19<style>
20 .trustpilot-container {
21 display: flex;
22 align-items: center;
23 background-color: #e9fff9;
24 border: 1px solid #d4edda;
25 border-radius: 8px;
26 padding: 2px 10px;
27
28 width: 100%;
29 border: 1px dashed #898686;
30 gap: 8px;
31 justify-content: center;
32 }
33
34 .trustpilot-image{
35 width: 60px;
36 }
37 .trustpilot-logo{
38 width: 70px;
39 }
40 .trustpilot-text{
41 font-size: 13px;
42 font-weight: 600;
43 }
44 .trustpilot-rating{
45 font-size: 10px;
46 font-weight: 500;
47 color: #000;
48 }
49</style>

Related snippets