Hello, I would like the social links that are in the header of the site, to be nofollow. For SEO this is very important.
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