Depending on which you have implemented you will have slightly different implementations of our scripts.
Add the following script to the body of your HTML.

You'll need to populate the ShoeSizeShoppingCart Object with the properties of the items in the cart.

      <script type="text/javascript">
        var ShoeSizeShoppingCart = {"shopID": "SHOP_ID","purchases": []};
        
        // Loop throught the items in the cart
        // and push their properties into the purchases object
        ShoeSizeShoppingCart.purchases.push({
          "shoeID": "SHOE_ID",
          "size": "SIZE",
          "scale": "SCALE", // downscale
          "quantity": "QUANTITY",
          "price": "PRICE"
        });

        // Do not modify
        (function(){
          var script = document.createElement('script');script.type = 'text/javascript';
          script.src = 'https://shoesize.me/plugin/cart.js?'+
            'shopid='+encodeURIComponent(ShoeSizeShoppingCart.shopID) +
            '&sid=' + Math.round(new Date().getTime() / 1000);
          (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);
        })();
      </script>
    

Your browser is out of date!

Update your browser to view this website correctly. Update my browser now

×