Make anchor links work without url changing and smooth scroll

Hi there!

I noticed (on the listing view page, but it’s probably on every page that has anchor links) that it jumps to the anchor position instead of scrolling smoothly, which I’d prefer. Also it changes the url to #anchor which is not ideal imo.

Thank you!

Hi,
The URL change is the expected behavior for anchor links (this way it’s possible to link to reviews or location directly - it worked this way since the first version), but we had to remove the smooth scroll because it caused a few issues. You can enable it again using this CSS snippet:

html {
  scroll-behavior: smooth;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.