How to filter by any match on a CMS List? (example: filter "ABC" returns "ABC and some words" and "ABC more text")
Text inputs will return results as long as the input text is contained within the filter field. You can also pair this with fuzzy search to account for user input errors.
Use fs-listfuzzy="THRESHOLD"
to set the tolerance level for fuzzy matching. The THRESHOLD
value ranges from 0 to 100, where 0 allows only exact matches and 100 allows the maximum flexibility. A value of 20 is a recommended starting point, but you can adjust it as needed.
Check more questions and answers
How to filter by any match on a CMS List? (example: filter "ABC" returns "ABC and some words" and "ABC more text")
Text inputs will return results as long as the input text is contained within the filter field. You can also pair this with fuzzy search to account for user input errors.
Use fs-listfuzzy="THRESHOLD"
to set the tolerance level for fuzzy matching. The THRESHOLD
value ranges from 0 to 100, where 0 allows only exact matches and 100 allows the maximum flexibility. A value of 20 is a recommended starting point, but you can adjust it as needed.