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
This sounds very similar to this post I answered recently:
The answer I give in that thread sounds like exactly what you need.
You will essentially match on any ancestor ID of a product that matches the category links you've configured via your property, above.
Hope it helps!
Paul
I've a class like
public class IndustryPage
{
[CultureSpecific]
[Display(
Name = "Categories",
Description = "Categories",
GroupName = SystemTabNames.Content,
Order = 30)]
[AllowedTypes(typeof(CategoryPage))]
public virtual IList<ContentReference> Categories { get; set; }
}
Not i want to find industry pages by passing categories(contentrefernce) list.
Can someone help me in this?