엘리멘터의 워드프레스 메뉴를 사용 하다보면 드롭다운메뉴가 열리는데 약 1초정도의 딜레이가 있는것을 알 수 있습니다. 이 속도를 빠르게 하기 위해 다름 과 같은 코드를 function.php에 추가 합니다.
add_action( 'wp_footer', function () { ?>
<script>
jQuery(document).ready(function($) {
var $menu = $('.elementor-nav-menu:first');
// Get rid of the existing menu
$menu.smartmenus('destroy');
// Re-instantiate the new menu, with no delay settings
$menu.smartmenus( {
subIndicatorsText: '',
subIndicatorsPos: 'append',
subMenusMaxWidth: '1000px',
hideDuration: 200, // the length of the fade-out animation
hideTimeout: 150, // timeout before hiding the sub menus
showTimeout: 0, // timeout before showing the sub menus
});
});
</script>
<?php } );