Hi,
Is there any way, to get a loop of the created manufacturers in a list like:
<ul>
@foreach (var i in GetLoop("Products")) {
var brandItemName = @i.GetString("Ecom:Manufacturer.Name");
<li>@brandItemName</li>
}
</ul>
The above code, will list the same manufacturer multiple times...