Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

Sepete ürün eklendiğinde, çıkartıldığında veya sepetteki ürün adedi artırılıp, azaltıldığında alttaki kod çalıştırılmalıdır.

Submit the product codes in the parameter OM.pb, separating them with a semicolon.

Submit the quantity of the relevant product in the basket in the OM.pu parameter, separating them with a semicolon.

In the OM.ppr parameter, multiply the price of the relevant product and the number in the basket and send them by separating them with a semicolon.

The following code should be run every time the basket is updated.

When the basket is completely empty, all parameters except OM.pbid should be sent empty.

var data = {
  "OM.pbid" : basketID, 
  "OM.pb" : "Product1 Code;Product2 Code", 
  "OM.pu" : "Product1 Quantity;Product2 Quantity", 
  "OM.ppr" : "Product1 Price*Product1 Quantity;Product2 Price*Product2 Quantity"
};
visilabsApi.customEvent("Cart", data);

 

You can review the sample usage in line 18. on this page.
You can review the sample usage in line 48. on this page.
You can review the sample usage in line 27. on this page (You can see the empty basket on line 96.)
You can review the sample usage in line 104. on this page.


Next Step


  • No labels