Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
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.