How to open social media link in a new tab in ShopIsle

It's really easy to make a link open in a new tab, and we already have a document for that:  How to open links in new tab. This document covers three different requests of opening link in new tab. Just follow the last process of given doc and add the following code in your header.php file above the </head>:

<script type="text/javascript">// <![CDATA[
jQuery(document).ready(function($){
    $('.footer-social-links a').each(function(){
        if( $(this).attr('href') && 0 != $(this).attr('href').indexOf('#') ) {
            $(this).attr('target', '_blank');
        }
    });
});
// ]]></script>

In case of any query, feel free to contact our  support forum.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us