Hi,
is there a chance to add the social media icons to the main menu? If I set the icons to display in the main header area the icons appear above the menu.
Thanks!
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
function av_move_social(){
?>
<script>
jQuery(window).load(function(){
jQuery("#header ul.noLightbox.social_bookmarks").detach().appendTo('.avia-menu.av-main-nav-wrap')
});
</script>
<?php
}
add_action('wp_footer', 'av_move_social');
Cheers!
Josue
Thank you!