Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active December 2, 2023 18:43
Show Gist options
  • Save softiconic/502cba21f69e0647e56b67bc1d8d067c to your computer and use it in GitHub Desktop.
Save softiconic/502cba21f69e0647e56b67bc1d8d067c to your computer and use it in GitHub Desktop.
Include Elementor anchor with an offset.
add_action( 'wp_footer', function() {
if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
return;
}
?>
<script>
window.addEventListener('elementor/frontend/init', function() {
elementorFrontend.hooks.addFilter( 'frontend/handlers/menu_anchor/scroll_top_distance', function( scrollTop ) {
return scrollTop - 180;
} );
} );
</script>
<?php
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment