Back to Shopify Liquid
Google Reviews
Shopify Liquid

Google Reviews

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

50 lines · 1.1 KB
Shopify Liquid
1<div class="google-container">
2 <div class="google-text">"Amazing"</div>
3
4 <img
5 class="google-image"
6 src="https://cdn.shopify.com/s/files/1/0798/4267/2987/files/Revive_39.png?v=1733346031"
7 alt="googleImage"
8 />
9
10 <div class="google-rating">Rated 4.4/5 on</div>
11
12 <img
13 class="google-logo"
14 src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Google_2015_logo.svg/640px-Google_2015_logo.svg.png"
15 alt="googleImage"
16 />
17</div>
18
19<style>
20 .google-container {
21 display: flex;
22 align-items: center;
23 background-color: #fbfbfb;
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 .google-image{
35 width: 65px;
36 }
37 .google-logo{
38 width: 45px;
39 margin-top: 2px;
40 }
41 .google-text{
42 font-size: 13px;
43 font-weight: 600;
44 }
45 .google-rating{
46 font-size: 10px;
47 font-weight: 500;
48 color: #000;
49 }
50</style>

Related snippets