Hi Thomas
Ok please go to the theme directory arilewp-pro >> functions.php file and open this file.
And add the below code to remove the more prevent from url.
function remove_more_link_scroll( $link ) {
$link = preg_replace( '|#more-[0-9]+|', '', $link );
return $link;
}
add_filter( 'the_content_more_link', 'remove_more_link_scroll' );
Let us know if it works.
Thanks