Samplize Components Demo
API Tester
* please, first add the product before try to update the quantity
        window.samplizeDrawerCart.addProduct( productId, title, imageLink, price, quantity, showCart )
        
        productId:  (String)   Product id that corresponds to the product id in Shopify
        title:      (String)   Title displayed on the right side of the product image
        imageLink:  (String)   HTTP address from Shopify
        price:      (String)   Price of the product, unit.
        quantity:   (Integer)  Number of items of this product to be added to cart
        showCart:   (Boolean)  If the cart has to shows when a product is added
        
        All parameters are required 
        (All parameters can be extracted from Searchinaze results)
        

        window.samplizeDrawerCart.updateProductQuantity( productId, quantity )

        productId:  (String)   Product id that corresponds to the product id in Shopify
        quantity:   (Integer)  Number of items of this product to be added to cart. Must be equal or greater than 1.

        All parameters are required 
        (All parameters can be extracted from Searchinaze results)
        
API PPG Tester
* please, first add the product before try to update the quantity
        window.samplizeDrawerCart.addPPGProduct( productCode, quantity, showCart )
        
        productCode:  (String)   Product code that corresponds to the product code in PPG
        quantity:   (Integer)  Number of items of this product to be added to cart
        showCart:   (Boolean)  If the cart has to shows when a product is added
        
        All parameters are required 
        (All parameters can be extracted from Searchinaze results)
        

        window.samplizeDrawerCart.updatePPGProductQuantity( productCode, quantity )

        productId:  (String)   Product id that corresponds to the product id in Shopify
        quantity:   (Integer)  Number of items of this product to be added to cart. Must be equal or greater than 1.

        All parameters are required 
        (All parameters can be extracted from Searchinaze results)