GroupList
Tags, loops and template examples related to displaying information about groups of products
Available tags
Available loops
Groups
The Groups
loop lets you display information about product groups defined with Groups>Product groups in the module paragraph settings.
RAZOR
@foreach (LoopItem item in GetLoop("Groups")){ <p>@item.GetValue("TagName")</p> }
NextLevelGroups
The NextLevelGroups
loop lets you display information about product groups places on next bottom lavel of current group defined with Groups>Product groups in the module paragraph settings.
RAZOR
@foreach (LoopItem item in GetLoop("NextLevelGroups")){ <p>@item.GetValue("TagName")</p> }