remove repeater info from smart search page crawler

Miguel Vieira asked on May 27, 2015 19:43

I have a page crawler defined to my blog area, and i have a repeater there. In the repeater on each blogpost i have the lateste 3 posts from the blog. So when i search for any of the blogposts i get what i want + the 3 that are in the repeater.

I tried to remove that info creating a custom filter.

outputResult = Regex.Replace(outputResult, "<div class=\"repeater-blog\".*?", " ", RegexOptions.IgnoreCase | RegexOptions.Singleline | RegexOptions.Compiled);

But it still appears

Recent Answers


Rui Wang answered on May 29, 2015 17:00

why would you page crawler as index option instead of just page?

0 votesVote for this answer Mark as a Correct answer

Miguel Vieira answered on May 29, 2015 18:43

In the blog area we changed the blogpost author. Instead of the user that creates the blogpost is the author, we added a field to choose the author. We used a page selector to get the author from our authors zone(where we have a page for each author).

The problem is that we get the NodeID in the search and not the name.

0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.