Shopify installation (ReactionSDK)
Theme snippet install, reaction-video embed, ReactionSDK overlay configuration, and dashboard analytics.
For ReactifySDK—recorded video reactions and threads in storefront content—follow ReactifySDK HTML installation (script + reactify-thread / reactify-video in a custom Liquid block).
1) Install SDK
ReactionSDK
<!-- Add to theme.liquid (before </body>) -->
<script src="https://reactify-cdn.s3.us-east-2.amazonaws.com/sdk.js" defer></script>2) Embed video
Product media
<!-- Add to a section/snippet where your product video renders -->
<reaction-video src="{{ product.featured_media | media_url }}"></reaction-video>3) Configure overlays
Full attributes
<!-- Configure overlays via attributes -->
<reaction-video
src="{{ product.featured_media | media_url }}"
overlays="tap,poll,rating,slider,cta"
poll-question="Which style do you prefer?"
cta-text="Buy Now"
overlay-position="bottom-center"
interaction-type="tap"
></reaction-video>Run in Playground
<reaction-video src="video.mp4" overlays="tap,poll,rating,slider,cta" cta-text="Add to cart" interaction-type="rating"></reaction-video>Try this config in the Playground.
4) View analytics dashboard
Open the dashboard to see impressions, interactions, and engagement analytics.

