Hi all,

I'm using module Search API to search content through my site.
The search page is a view that uses "Rendered entity" as display output.

So I would like to do some stuff before entity is rendered.
But when I add this function to my theme

function MYTHEME_preprocess_entity(&$vars) {
  //...
}

It never gets called.

Shouldn't it be fired before the entity is rendered?

Thanks!