We have a search form on a website that uses Kirby’s core search
method:
$pages->published()->search($query);
Reading the docs, it’s possible to include an array of fields in the params for the search to look into. This is a positive list: only the listed fields get used.
Is there also a way to define a negative list? An array of field to exclude? It’s very tedious to define included fields by hand, ignoring one or two field. And it’s also prone to errors if you forget to adjust your search if the field setup ever changes.