Okay
  Public Ticket #2502911
Social Media in Topbar open in new tab
Closed

Comments

  • Boost87 started the conversation

    Hello

    Is there a way to open the social media icons in a new tab? So the link to Facebook or Instagram? These are the icons in the topbar in the upper right corner of my page.

    Thanks Manuel

  •  2,965
    Andrew replied

    Hi there,

    Use the following Custom JS code.

    <script type="text/javascript">
    jQuery( document ).ready(function() {   jQuery('a').attr('target', '_blank');
    });
    </script>
    

    You can add the Custom JS code in here : 

    3107047513.png

    Thanks 

  • Boost87 replied

    Amazing. Thank you!

  • Boost87 replied

    Now i have a other problem. Now it also opens all other pages from the main menu in a new tab.

  •  2,965
    Andrew replied

    Hi there, 

    Please replace the previous JS code with this one

    <script type="text/javascript">
    jQuery( document ).ready(function() {   jQuery('#header-secondary-outer .sf-menu a').attr('target', '_blank');
    });
    </script>
    

    Thanks

  • Boost87 replied

    Great, thank you. Have a nice weekend


    Best regards,

    Manuel