Home › Forums › Support › Prevent Page Scroll When Clicking the More Link › Reply To: Prevent Page Scroll When Clicking the More Link
April 11, 2016 at 8:31 am
#185940
Tom
Lead Developer
Lead Developer
Hi Tony,
You can add this function:
add_filter( 'generate_more_jump','generate_disable_more_jump' );
function generate_disable_more_jump()
{
return '';
}
Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/
That should do it 🙂