Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active May 14, 2024 16:15
Show Gist options
  • Save softiconic/3cbf2cd9687f3c59bd5eeaa48e98e067 to your computer and use it in GitHub Desktop.
Save softiconic/3cbf2cd9687f3c59bd5eeaa48e98e067 to your computer and use it in GitHub Desktop.
Adjust the positioning offset of the Elementor anchor element/links
add_action( 'wp_footer', function() {
if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
return;
}
?>
<script>
jQuery( function( $ ) {
// Add space for Elementor Menu Anchor link
$( window ).on( 'elementor/frontend/init', function() {
elementorFrontend.hooks.addFilter( 'frontend/handlers/menu_anchor/scroll_top_distance', function( scrollTop ) {
return scrollTop - 120;
} );
} );
} );
</script>
<?php
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment