How to make the social network icon open in a new tab?

Discussion in 'One Page Pro WordPress Theme' started by topmktwww, Dec 8, 2016.

Thread Status:
Not open for further replies.
  1. topmktwww

    topmktwww New Member

    Joined:
    Dec 7, 2016
    Messages:
    7
    Likes Received:
    0
    I saw the code on footer like above, but the page is opening on the same tab, and I would like to open in a new tab, could you please check the code above and point the changes that I need to make ?

    thanks

    <a class="yt animated bounce" href="<?php echo esc_url( onepage_get_option( 'onepage_yt_link', 'https://www.youtube.com/')); ?>" title="Youtube" style="animation-delay: 0.4s"><i class="fa fa-youtube-play"></i></a>
     
  2. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    Use the following code there:
    Code:
    <a class="yt animated bounce" href="<?php echo esc_url( onepage_get_option( 'onepage_yt_link', 'https://www.youtube.com/')); ?>" title="Youtube" target="_blank" style="animation-delay: 0.4s"><i class="fa fa-youtube-play"></i></a>
    This will help you to figure it out and resolve the issue(s).
     
    topmktwww likes this.
  3. topmktwww

    topmktwww New Member

    Joined:
    Dec 7, 2016
    Messages:
    7
    Likes Received:
    0
    awsome thank you, this worked very well.
     
  4. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    You are most welcome :)
     
Thread Status:
Not open for further replies.

Share This Page