Anchor links in Webflow may not work correctly when combined with query strings, especially when clicked within the same page. Here’s how to fix it.
1. Use Custom JavaScript to Handle In-Page Navigation
- Webflow’s default behavior may not recognize query strings when reloading anchor links, so you need a script to manually scroll to the target.
- Add the following JavaScript inside Page Settings → Footer Code:
```js``` - This script ensures smooth scrolling and updates the URL while handling query strings properly.
2. Ensure the Anchor Targets Exist
- Every anchor link should have a corresponding HTML ID attribute.
- Example: If linking to
#section1?ref=test
, ensure there is an element with id="section1"
.
3. Test in Incognito Mode
- If the fix does not work immediately, test in an incognito browser to rule out cache issues.
4. Publish and Verify
- Publish your Webflow site and test the behavior on a live version, as some features behave differently in preview mode.
Summary
To fix anchor links with query strings in Webflow, add custom JavaScript that removes the query string when scrolling and manually updates the URL. Also, ensure each anchor has a valid HTML ID and test in an incognito window after publishing.