
Customer Live Sale
Display a social proof widget that shows stacked customer profile images and a live-updating purchase counter. It uses a JavaScript timer to simulate real-time sales activity by incrementing the customer count at random intervals.
- Dynamic purchase counter incrementing via JavaScript
- Stacked profile avatar design (face-pile style)
- Randomized delay timers for realistic activity simulation
- Self-contained CSS with unique class names to prevent style conflicts
- On high-traffic product pages to increase buyer confidence via social proof.
- During flash sales to create a sense of high demand and FOMO.
- As a lighter alternative to 3rd-party live purchase popup apps.
- Shopify Online Store 2.0
- Most Shopify themes
The code
1<!DOCTYPE html>2<html lang="en">3<head>4 <meta charset="UTF-8">5 <meta name="viewport" content="width=device-width, initial-scale=1.0">6 <title>Rating Widget</title>7 <style>8 body.uniqueBody_Ty83Kl {9 font-family: Arial, sans-serif;10 }1112 .ratingWidget_Wp76Nm {13 display: flex;14 align-items: center;15 }1617 .profileImages_Qw59Br {18 display: flex;19 align-items: center;20 margin-right: 20px;21 }2223 .profileImages_Qw59Br img {24 width: 30px;25 height: 30px;26 border-radius: 50%;27 margin-right: -10px;28 border: 2px solid white;29 }3031 .nameAndVerified_Xz24Ft {32 display: flex;33 align-items: center;34 margin-left: 15px;35 font-size: 12px;36 }3738 .purchaseText_Ym34Gh {39 font-size: 12px;40 margin-left: 5px;41 }4243 /* Sayıyı daha belirgin, siyah ve bold yap */44 #purchase-count {45 font-weight: bold;46 color: #000000; /* Siyah renk */47 font-size: 14px; /* Biraz daha büyük */48 }4950 @font-face {51 font-family: "CustomIcons";52 src: url("https://fonts.gstatic.com/s/materialsymbolsoutlined/v54/1f6ad2e0e7c7b3724793c4d8709a24a5.woff2") format("woff2");53 }54 </style>55</head>56<body class="uniqueBody_Ty83Kl">5758 <div class="ratingWidget_Wp76Nm">59 <div class="profileImages_Qw59Br">60 <img src="https://randomuser.me/api/portraits/men/1.jpg" alt="Profile 1">61 <img src="https://randomuser.me/api/portraits/women/1.jpg" alt="Profile 2">62 <img class="uniqueReviewImage_Tz89Lp" src="https://i.hizliresim.com/je7b0fg.jpg" alt="Profile 3">63 <div class="nameAndVerified_Xz24Ft">64 <span>Burkisoy and <span id="purchase-count">470</span> people purchased</span>65 </div>66 </div>67 </div>6869 <script>70 let purchaseCount = 470;71 const purchaseCountElement = document.getElementById("purchase-count");7273 function updatePurchaseCount() {74 // Her seferde 1, 2 veya bazen 3 artış miktarı75 let incrementAmount = Math.floor(Math.random() * 3) + 1;76 purchaseCount += incrementAmount;77 purchaseCountElement.textContent = purchaseCount;7879 // Sonraki artış süresini rastgele 2 ila 8 saniye arasında belirle80 const nextUpdateDelay = Math.floor(Math.random() * 6000) + 2000;8182 setTimeout(updatePurchaseCount, nextUpdateDelay);83 }8485 // İlk güncellemeyi başlat86 updatePurchaseCount();87 </script>8889</body>90</html>
How to install Customer Live Sale on your Shopify theme
This snippet belongs in sections/main-product.liquid, directly under the Add to cart button, where it reinforces the purchase decision. Expect the whole job to take about 5–10 minutes.
- 1From your Shopify admin, open Online Store → Themes, click the … button on your live theme and choose Duplicate. Always work on a copy so you can roll back instantly.
- 2On the duplicated theme, click … → Edit code to open the theme code editor.
- 3Open sections/main-product.liquid in the file tree. If your theme uses different file names, search for the template that renders the area where you want the block to show up.
- 4Click Copy code on this page, then paste the snippet directly under the Add to cart button, where it reinforces the purchase decision.
- 5The snippet ships with its own scoped
<style>block, so you do not need to touchbase.cssortheme.css. If you prefer to keep CSS centralised, move the contents of the style tag into your theme stylesheet and delete the inline block. - 6Keep the
<script>tag at the end of the snippet. It only runs once the surrounding markup exists in the DOM, so moving it higher up the file can break the behaviour. - 7Click Save, then hit Preview and check the block on desktop, tablet and mobile widths.
- 8When you are happy with the result, publish the duplicated theme from Online Store → Themes → Actions → Publish.
How to customise it
Every value below lives inside the snippet, so you can adapt Customer Live Sale to your brand without touching the rest of the theme.
- Colours — the snippet uses
#000000. Replace those values inside the style block with your brand palette, keeping at least a 4.5:1 contrast ratio between text and background so the block stays accessible. - Typography — the block declares
font-family: Arial, sans-serif. Delete that line to inherit your theme font instead, which usually looks better integrated. - Sizing — adjust the font-size values (12px, 14px) and the padding so the block carries the same visual weight as the elements around it.
- Corners —
border-radius: 50%controls the roundness. Set it to 0 for a sharper editorial look, or increase it for a softer, app-like feel. - Images — replace the placeholder image URLs with your own assets. Upload them under Content → Files in Shopify admin and use the generated CDN URL, or reference a theme asset with
{{ 'my-image.png' | asset_url }}. - Copy — rewrite the hard-coded text (for example “Rating Widget”) in your own brand voice, and translate it if you sell in more than one language.
Common mistakes to avoid
These are the issues merchants run into most often when installing a snippet like this one.
- Editing the live theme directly. Duplicate it first — a single unbalanced Liquid tag can take a storefront down mid-campaign.
- Pasting the code into the wrong file. Dropped into
layout/theme.liquidinstead ofsections/main-product.liquid, this block will render on every page of the store, including ones where it makes no sense. - Renaming the CSS classes in the markup but not in the style block, or vice versa. The class names have to match exactly or the styling silently disappears.
- Adding the snippet twice on the same page. The script targets its selector, so two copies can conflict or double-fire.
- Leaving the demo images in place. They are hosted on third-party domains, can disappear at any time and slow the page down. Re-upload them to Shopify Files before going live.
- Publishing without testing on a real phone. Most Shopify traffic is mobile, and layout problems almost always surface there first.
Performance notes
What this block costs you in load time, and how to keep that cost at zero.
- The CSS is inline and scoped to this block, so it adds no extra network request. At a few kilobytes it has no measurable effect on your Lighthouse score.
- The JavaScript is vanilla — no jQuery, no external library, no additional request. Keep it after the markup so it never blocks rendering.
- Add
loading="lazy"plus explicit width and height attributes to every image in the snippet. That prevents Cumulative Layout Shift, which is a Core Web Vitals ranking factor. - Third-party image URLs bypass the Shopify CDN and add extra DNS lookups. Self-hosting those assets usually saves 100–300ms on first paint.
- Run PageSpeed Insights before and after you add the block so you have a concrete number rather than a guess.
SEO & accessibility
How to add this block without damaging your on-page structure or your rich results.
- Nothing in this snippet should replace your page
<h1>. Keep product and page headings intact and use<h2>or<h3>for the block's own heading so the document outline stays clean. - Write a descriptive alt attribute for every image. Empty or generic alt text is one of the most common accessibility and SEO issues on Shopify stores.
- If the block shows review or rating content, keep it consistent with the structured data your review app already outputs. Duplicating or contradicting rating markup can cost you the rich result entirely.
- The block does not create a new URL, so there is no canonical or indexing change to make. It improves on-page engagement signals rather than crawlability.
Customer Live Sale — questions merchants ask
Will this snippet work with my theme?
It is built with standard Liquid, HTML and CSS, so it works with Dawn and virtually every Online Store 2.0 theme, as well as most vintage themes. The only thing that changes between themes is the file you paste it into — if yours has no sections/main-product.liquid, look for the equivalent template that renders the same area.
Do I need an app to use it?
No. This is theme code you own outright: no monthly fee, no third-party script tag, and no app that can break your storefront the next time it updates.
How long does it take to add “Customer Live Sale” to a store?
Most merchants have it live in under fifteen minutes — duplicate the theme, paste the code, adjust the colours and copy, preview on mobile, publish.
The block appears but nothing happens. What is wrong?
That is almost always a script-order problem. Check that the script tag is still at the bottom of the snippet and that the markup was not pasted inside another script or a Liquid comment block. Open your browser console and look for an error naming the snippet's selector.
The styling looks broken after pasting. How do I fix it?
Confirm you copied the whole snippet including the closing style tag, then check whether one of your theme's own CSS rules is overriding it. If a theme rule wins, increase the specificity of the snippet's selector rather than scattering !important through the file.
Will it slow my store down?
Not meaningfully. It is inline markup with scoped CSS and at most a few lines of vanilla JavaScript — no external libraries, no extra HTTP request. Optimising your product images will always have a far bigger impact on load time.
Can I use it on a client store or a commercial project?
Yes. Every snippet in the MCO Hub library is free to copy, modify and ship on any store, including client work. Attribution is appreciated but not required.
Related snippets
Keep exploring
Guides
Shopify Liquid
Tools
Deals & Discounts



