Hi DW.
I want to show my customers the specific credit cards that we accept in our shop so I made an item relation list to add to my website. Unfortunately it doesn't seem to work when I try to retrieve it when I am using below code in my checkout flow. The same code has been used on my masterpage and works like a charm. It's only when I am trying to retrieve it from e.g. ShowCart.cshtml that it doesn't work.
This is my code:
@foreach (LoopItem item in GetLoop("Item.Area.CreditCards"))
{
item.GetString("Item.Area.CreditCards.Name.Value");
}
Is there some sort of Global tag I need to add to the above?