(Social Media) Icon link no-follow

s.hendriks
16 Posts
s.hendriks posted this 21 December 2015

Is it possible to place a no-follow tag on the social media icon links?

Is it possible to place a no-follow tag on the social media icon links?
Vote to pay developers attention to this features or issue.
5 Comments
Order By: Standard | Newest
Support Team
Support Team posted this 22 December 2015

Hi,

Unfortunately there is no such option in the application.

Sincerely,
Hella

Hi, Unfortunately there is no such option in the application. Sincerely, Hella
s.hendriks
16 Posts
s.hendriks posted this 22 December 2015

Thanks for the support.

Thanks for the support.
Support Team
Support Team posted this 22 December 2015

Please feel free to contact us in any other occasion.

Sincerely,
Hella

Please feel free to contact us in any other occasion. Sincerely, Hella
Stagger Lee
1818 Posts
Stagger Lee posted this 15 May 2016

Add this to Settings CMS code (if WordPress):

function themler_social_icons_nofollow($text) {
    $return = str_replace('bd-socialicon"', 'bd-socialicon" rel="nofollow"', $text);
    return $return;
}
add_filter('the_content', 'themler_social_icons_nofollow');
add_filter('theme_body', 'themler_social_icons_nofollow');

Add this to Settings CMS code (if WordPress): function themler_social_icons_nofollow($text) { $return = str_replace('bd-socialicon"', 'bd-socialicon" rel="nofollow"', $text); return $return; } add_filter('the_content', 'themler_social_icons_nofollow'); add_filter('theme_body', 'themler_social_icons_nofollow');
anthony
43 Posts
anthony posted this 29 July 2016

Add this to Settings CMS code (if WordPress):

function themler_social_icons_nofollow($text) {
  $return = str_replace('bd-socialicon"', 'bd-socialicon" rel="nofollow"', $text);
  return $return;
}
add_filter('the_content', 'themler_social_icons_nofollow');
add_filter('theme_body', 'themler_social_icons_nofollow');

This didn't seem to work for me. Any other ideas? To me the social media icons should point to social media page. Not share the web page.

> Add this to Settings CMS code (if WordPress): > > function themler_social_icons_nofollow($text) { > $return = str_replace('bd-socialicon"', 'bd-socialicon" rel="nofollow"', $text); > return $return; > } > add_filter('the_content', 'themler_social_icons_nofollow'); > add_filter('theme_body', 'themler_social_icons_nofollow'); This didn't seem to work for me. Any other ideas? To me the social media icons should point to social media page. Not share the web page.
You must log in or register to leave comments