i have af productlist where i need to get access to the product.prices loop, unfortunateley it seems like im only able to get this on the product template and not the productlist.
it is available i templatetags.
The example below always shows 0 at i.GetLoop("Product.Prices").Count even though the products has multiple pricelines in the backend.
is this a bug or am i doing something wrong?
foreach (LoopItem i in GetLoop("Products")){
@:<div class="col-xs-6 col-md-4 product">
@: <h4>@i.GetValue("Ecom:Product.Name")</h4>
@i.GetString("Ecom:Product.ID")
@i.TemplateTags()
@* GetLoop fejl *@
@: <br />
@i.GetLoop("Product.Prices").Count
@: <div class="btn-holder">
@: <a href="@(i.GetValue("Ecom:Product.Link.Clean"))" class="btn btn-success">Se produkt</a>
@: </div>
@: </div>
}