All Collections
Integrations
Debutify 2.0.2
How to integrate Stamped.IO into Debutify?
How to integrate Stamped.IO into Debutify?
Mirza Asad Baig avatar
Written by Mirza Asad Baig
Updated over a week ago

Stamped.IO is an AI-powered marketing platform that offers a VIP program, referral program, and rewards system to engage more customers.

Important: Make sure Stamped.IO is installed in Debutify.

Integrating Stamped.IO with Debutify is like shooting fish in a barrel and it does not call for basic programming skills in this procedure.

STEP 1. Under Sales Channels, select Online Store.

STEP 2. On the right portion of the page, click on Customize.

STEP 3. Located on the bottom part of the sidebar menu, tap Theme actions.

STEP 4. Tap Edit Code.

STEP 5. Go to the Snippets folder.

STEP 6. Paste this code in review-badge.liquid file

<span class="stamped-product-reviews-badge stamped-main-badge" data-id="{{ product.id }}" data-product-sku="{{ product.handle }}" data-product-type="{{product.type}}" data-product-title="{{product.title}}" style="display: inline-block;">{{ product.metafields.stamped.badge }}</span>
โ€‹

<span class=" stamped-product-reviews-badge" data-product-sku="{{ product.handle }}" data-id="{{ product.id }}" data-product-type="{{product.type}}" data-product-title="{{product.title}}" style="display:block;">{{ product.metafields.stamped.badge }}</span>
โ€‹

STEP 7. Paste this code in review-widget.liquid file:

<div id="stamped-main-widget"

data-widget-style="standard"

data-product-id="{{ product.id }}"

data-name="{{ product.title | escape }}"

data-url="{{ shop.url }}{{ product.url }}"

data-image-url="{{ product.featured_image | product_img_url: "large" |replace: '?', '%3F' | replace: '&','%26'}}"

data-description="{{ product.description | escape }}"

data-product-sku="{{product.handle}}"

data-product-type="{{product.type}}">

{{ product.metafields.stamped.reviews }}

</div>

STEP 8. Please add this piece of code in theme.liquid file before </head> tag:

<script async type="text/javascript" data-api-key="" id="stamped-script-widget" src="https://cdn-stamped-io.azureedge.net/files/widget.min.js"></script>

STEP 9: Tap Save to confirm your changes.

Did this answer your question?