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

    Hi there enfold team,

    Is there any possibility to change the twitter widget in the footer area?
    I want to open the twitter link in a new window instead of opening it in the same window.

    Thanks for help!

    #596391

    Hey StudioLiner!

    Please add following code to Functions.php in Appearance > Editor

    
    function add_custom_twitter_target(){
    ?>
    <script>
    jQuery(window).ready(function(){
    jQuery('.avia_socialcount a').attr('target','_blank');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_twitter_target');

    Cheers!
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.