Home Forums Theme Support Stonex Social Icons

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1257

    How can I get the social icons to open in a new window when clicked? I don’t want people to leave the site.

    Tried this, but it doesn’t work.

    #1258

    Hi there,

    You need to edit the “header.php” file and add the _blank attribute to the social links.

    Example:

    From this:

    
    <a href="<?php echo $data['facebook_profile']; ?>">
    

    you make it this:

    
    <a target="_blank" href="<?php echo $data['facebook_profile']; ?>">
    

    Save. Done.

    Cheers!

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.