In Wix Editor Dynamic Pages, Can a Button Link to a Section/Anchor on the Same Page?

I believe this is expected behaviour - but I can see why this might be needed.

That said, it’s possible to fix with a short bit of code:

$w.onReady(function () {
    $w("#button").onClick(() => {
        $w("#section").scrollTo()
    })
});

Where the button and section ids are updated to what is relevant for your setup