Install

Shopify

Theme code, no app needed.

  1. In Shopify admin go to Online Store, Themes, and click the three dots next to your live theme, then Edit code.
  2. Open layout/theme.liquid.
  3. Paste the snippet just before </head> and save:
<script src="https://replaycat.com/rc.js?site=YOUR_SITE_KEY"></script>

Shopify's checkout pages are hosted by Shopify and do not load theme scripts, so recordings stop at the checkout hand-off. That is the same for every replay tool on Shopify.

To identify logged-in customers, add this below the snippet:

{% if customer %}
<script>window.rc && rc('identify', '{{ customer.id }}', { email: '{{ customer.email }}' });</script>
{% endif %}