November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Two things off the top of my head
Hi!
Hi!
I figured out why this is happening. There are block types from an earlier version of the solution - epi 6, that are generated in admin, and not in code.
They reside as nodes in the page tree.
Is it possible to exclude specific nodes from the indexing, or do I need to tell them to replace all the blocks with newer versions?
You can probably use Ancestors to filter out the pages belong to specific nodes, given that you know their content references
ContentIndexer.Instance.Conventions.ForInstancesOf<T>().ShouldIndex(x=>!x.Ancestors().Contains("the node content link"))
Yes, but since they are created in admin, I don't have a type to put in for 'T'. I will try with PageData.
Hi!
I have excluded items from being indexed by Search & Navigation, but they are still indexed. I have this initialization module:
But the blocks and MyPageType are still being indexed.
Any tips on what I am doing wrong?