Hi
I wanna loop through an area.itemlist on a productpage.
Im thinking something like:
@foreach (var function in GetLoop("Pageview.Area.Item['Item.Area.Funktioner']")){
@function.TemplateTags();
}
But its not working.
If I want a "non-looped" value, I do this: @Pageview.Area.Item["SizeGuide"] - and it works.
The working loop on the master page looks like this:
@foreach (var function in GetLoop("Item.Area.Funktioner")){
@function.TemplateTags();
}
My problems is using it on the product page.
Hope you can help.
/Rune