...
As an example, here’s a custom example of a Shopify add to cart script (note, you’d update the domain fetch url to your wesite’swebsites):
Code Block |
---|
<script> setTimeout(() => { const przWidget = document.getElementsByClassName('preezie-widget-app')[0] if(przWidget) { przWidget.addEventListener('przAddToCartEvent', (event) => { console.log(event.detail); fetch("https://preezietest.myshopify.com/cart/add.js", { method: "POST", mode: "cors", cache: "no-cache", credentials: "same-origin", headers: { "Content-Type": "application/json" }, redirect: "follow", referrerPolicy: "no-referrer", body: JSON.stringify({"items":event.detail} ), }); }) } }, 2000); </script> |
...