Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #674175

    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!

    #675399

    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

    #678171

    Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Add social media icons to the main menu’ is closed to new replies.