Hi @teppo,
thank you for the great module! We use it for an internal project where the search function is very important.
Actually we have replaced some fields of type FieldtypeTextareas by FieldtypeCombo (both pro fields). Unfortunately FieldtypeCombo is not yet supported by SearchEngine, we have done this temporarily by the follwing lines in Indexer::___getIndexValue() at line 243:
} else if ($field->type instanceof \ProcessWire\FieldtypeCombo) {
return implode(
' ... ',
array_filter(
array_values($page->get($field->name)->getArray()),
'strlen'
)
);
Could you consider this in your next release of SearchEngine, please?
Best regards,
Thomas from XPORT.