julie
1
Upgraded to V2 for the fuzzy search feature, but search coming out exactly the same as V1 even with threshold = 100
I’ve tried both fs-listfuzzy=100 and fs-list-fuzzy=100 (saw both in separate places) to no impact.
Site URL
(Shortlist by SuperStuff Scratch)
Webflow - SuperStuff Opportunities
Looking at your HTML, I can see why your fuzzy search isn’t working properly.
The issue stems from incorrect attribute naming and missing required configurations for the Finsweet Attributes v2 fuzzy search functionality.
There are two main problems:
- You’re switching between
fs-listfuzzy
and fs-list-fuzzy
in your code, but the correct format is fs-list-fuzzy
(with the hyphen)
- You’re missing the required
fs-list-operator="equal"
attribute that must be present for fuzzy search to work
For fuzzy search to function properly, your search input needs to have:
fs-list-field="YOUR_FIELD_NAME"
fs-list-operator="equal"
fs-list-fuzzy="THRESHOLD"
Here’s what we recommend:
- Add the missing
fs-list-operator="equal"
to your search input
- Make sure you’re using the hyphenated version
fs-list-fuzzy="100"
consistently
- Consider testing with a lower threshold like 20 instead of 100 (which might be too permissive)
If you make these changes and still have issues, please share a Loom video showing your setup and search behavior so we can help troubleshoot further.
@Support-Luis or @Support-Pedro can assist if you need additional technical help with this implementation.
julie
3
Hey @julie! Seems that the threshold is causing the issue.
A value of 20
is a recommended starting point and can be adjusted as needed.
I’ve made this change with an override, and it seems to be working properly
julie
5
thanks Luis, appreciate it! my bad, I thought higher threshold meant fuzzier 
1 Like