Okay
  Public Ticket #2674448
Footer Menu Link _self
Closed

Comments

  • jforjackie started the conversation

    We have a navigation menu list of links in the footer, but when you click on the links they open up in a new tab. Wondering if there is a way to change the way the footer menu links are opening so that it opens _self same page instead of _blank? Can you please let us know where we can change this?

    thank you so much. 

  •  2,963
    Andrew replied

    Hi there,

    Use the following Custom JS code.

    <script type="text/javascript">
    jQuery( document ).ready(function() {   jQuery('#footer-outer .social li a').attr('target', '_self');
    });
    </script>
    

    You can add the Custom JS code in here : 

    3107047513.png

    Thanks 

  • jforjackie replied

    Thank you so much that helped me resolve the menu issue by changing .social to .menu 

    Thanks again.