Hi Anders,
1. Try using the Dynamic data option in the editor’s sidebar instead of the option from the floating bar.
2. Try adding a CSS class to that headline block of the link, eg. anchor-link,
3. Add this PHP snippet:
add_filter('generateblocks_dynamic_url_output','add_html_anchor_to_dynamic_link', 10,2);
function add_html_anchor_to_dynamic_link($url , $attributes) {
if( ! empty( $url ) && ! empty( $attributes['className'] ) && 'anchor-link' === $attributes['className'] ) {
$url = $url.'/#top';
}
return $url;
}