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

    Hello, I would like the social links that are in the header of the site, to be nofollow. For SEO this is very important.

    #1296099

    Hi rsilvestre,

    Can you try to add this code in functions.php (recommended in a child theme):

    function add_no_follow_social_link(){
    ?>
    <script>
      jQuery(document).ready(function($) {
        $(".social_bookmarks li a").attr("rel", "nofollow");
      });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_no_follow_social_link');

    Hope it helps.

    You can download and find instructions on how to use a child theme here: https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Nikko

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