Hi Community,I'm currently using some custom code in a Data Element to
return a price range of a specific product.This code is working, I'm
already using it on pages with a single product.var productPrice=
window.tc_vars.product_unitprice_ttc; var tranche; switch (true) { case
(0 <= productPrice && productPrice < 299): tranche = "/Less than 299€";
break; case (299 <= productPrice && productPrice < 301): tranche =
"/Between 299 and 300€"; break; } I would like to use this data element
on my baske...