Hi,
how to nofollow the social counter links? I searched the whole forum and almost every file of the theme and found nothing. 🙁 I did it once, but I don’t know how.
And no, it’s not automatically nofollow, look at my site: http://www.promicabana.de/
Thanks!
-
This topic was modified 10 years by
Bichareh.
Hi
You need to edit td_block_social_counter.php file and add this attribute here: http://screencast.com/t/eTTGbwd9CL – http://screencast.com/t/r25qdB2dF
Thanks!
i found it 🙂
//if the $show_icon_id parameter is set to true also add the social network name
if($show_icon_id === true){
return '
<span class="td-social-icon-wrap">
<a' . $td_a_target . ' href="' . $url . '" title="' . self::$td_social_icons_array[$icon_id] . '" rel="nofollow">
<i class="td-icon-font td-icon-' . $icon_id . '"></i>
<span class="td-social-name">' . $icon_id . '</span>
</span>';
}
return '
<span class="td-social-icon-wrap">
<a' . $td_a_target . ' href="' . $url . '" title="' . self::$td_social_icons_array[$icon_id] . '" rel="nofollow">
<i class="td-icon-font td-icon-' . $icon_id . '"></i>
</span>';
}