I'm looking for a way to determine in code if a block should be included in a collection based on if it is in visitor group.
List blockList = new List(); if (model.CurrentPage.BannerContentArea.Items.Any()) { foreach (var c in model.CurrentPage.BannerContentArea.Items) { var item = contentLoader.Get(c.ContentLink); // filter based on visitor group blockList.Add(item); } } HomeBannerBlock[] blocks = blockList.ToArray();
I have multiple blocks in a content area. Looking for a way to filter out personalised blocks if not required.
Hi,
I'm looking for a way to determine in code if a block should be included in a collection based on if it is in visitor group.
List blockList = new List();(c.ContentLink);
if (model.CurrentPage.BannerContentArea.Items.Any())
{
foreach (var c in model.CurrentPage.BannerContentArea.Items)
{
var item = contentLoader.Get
// filter based on visitor group
blockList.Add(item);
}
}
HomeBannerBlock[] blocks = blockList.ToArray();
I have multiple blocks in a content area. Looking for a way to filter out personalised blocks if not required.