Elementor Skip to Content Link Fix

PHOTO EMBED

Tue Jul 30 2024 15:19:54 GMT+0000 (Coordinated Universal Time)

Saved by @shm1ckle #php

add_action('wp_head', 'skip_link_fix');
function skip_link_fix() {
	?>
  <script>
  window.addEventListener( 'elementor/frontend/init', function() {
  if ( typeof elementorFrontend === 'undefined' ) {
  return;
  }
 
  elementorFrontend.on( 'components:init', function() {
  elementorFrontend.utils.anchors.setSettings('selectors',{});
  } );
  } );
  </script>
<?php
}
content_copyCOPY