I think I may have another issue filtering page fields when working with my search pages.
This works fine as all the fields are text fields
$matches = $pages->find("template=fabric, title|body|colour~=$q, limit=50");
This does not, I think because the hue field is a page type
$matches = $pages->find("template=fabric, title|body|hue~=$q, limit=50");
How can I deal with that if I am correct. I have several page type fields that I would like to include in my search.
Thanks