When READ MORE is clicked, the reader gets scrolled to the first text after the jump. It's horrible, I've tried
function remove_more_jump_link($link) {
$offset = strpos($link, '#more-');
if ($offset) {
$end = strpos($link, '"',$offset);
}
if ($end) {
$link = substr_replace($link, '', $offset, $end-$offset);
}
return $link;
}
add_filter('the_content_more_link', 'remove_more_jump_link');
which is what the official solution is according to the codex.
http://codex.wordpress.org/Customizing_the_Read_More#Link_Jumps_to_More_or_Top_of_Page
I tried everything, but nothing is working. The site is going to be my main job, and I need everything working perfectly, can anyone help me?