Test the embeddable buy button on a partner site
The widget opens with a product catalog. Users can browse products, view details, add to cart, and proceed to checkout.
The simplest embed - just add the data attribute and the script. Shows all products.
<div data-kushii-embed></div>
<script src="https://d1yfgmwybrvimm.cloudfront.net/kushii-embed.js"></script>
Pre-filtered to a specific brand - skips brand selection and shows products directly.
<div data-kushii-embed data-brand="ROSIN HEADS"></div>
Show a specific product directly using the product hash - skips brand and catalog views.
<div data-kushii-embed data-product-key="750314d3" data-product-name="Hash Rosin Wafer Stix"></div>
Customize the button text to match your site's messaging.
<div data-kushii-embed data-button-text="Browse Cannabis"></div>
Open the widget programmatically using JavaScript - useful for custom button designs.
KushiiEmbed.open();
Copy this code to embed the widget on any website:
<!-- Kushii Embed Widget -->
<div data-kushii-embed></div>
<script src="https://d1yfgmwybrvimm.cloudfront.net/kushii-embed.js"></script>