Home › Forums › WoodMart support forum › onepage anchor not working with lazy loading › Reply To: onepage anchor not working with lazy loading
December 5, 2022 at 10:57 am
#426229
Artem Temos
Keymaster
Hello,
Sorry, but that option works only when you scroll the page to highlight the menu item. If you want to increase the menu scroll point offset, you can do this globally only by adding the following code snippet to the functions.php file in your child theme
add_filter( 'woodmart_one_page_menu_offset', function () {
return 200;
});
Kind Regards