Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #352259

    Hi Enfold support,

    First, I love the Enfold theme; thank you for that. I am using the RSS Feed link in the Footer widget and would like it to open in a new window. Generally, I am able to trouble shoot my own questions by searching your forum. I have found a few topics, but I have been unsuccessful in getting this to work. Can you please help me?

    Thank you!

    #352479

    Hi Christine!

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

    function add_custom_rss_target(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('#rss-3 a').attr('target','_blank');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_rss_target');

    Cheers!
    Yigit

    #352634

    Fabulous! Thank you; you are wonderful!

    #352652

    Hi!

    You are welcome, glad we could help :)
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Open a RSS Feed in new window’ is closed to new replies.