November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
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?