MyBB Community Forums

Full Version: ¿How to Add rel="nofollow" to the links of the posts?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Well, I want to know how can I Add the rel="nofollow" to the links on the posts?

Thanks!
Line 858 of ./inc/class_parser.php:

$link = "<a href=\"$fullurl\" target=\"_blank\">$name</a>";

replace with:

$link = "<a href=\"$fullurl\" target=\"_blank\" rel=\"nofollow\">$name</a>";
(2009-08-08, 05:58 PM)MattRogowski Wrote: [ -> ]Line 858 of ./inc/class_parser.php:

$link = "<a href=\"$fullurl\" target=\"_blank\">$name</a>";

replace with:

$link = "<a href=\"$fullurl\" target=\"_blank\" rel=\"nofollow\">$name</a>";

Really thanks for that Matt!!!

Smile
Thanks Matt Smile

regarding this http://en.wikipedia.org/wiki/Nofollow
and this http://googleblog.blogspot.com/2005/01/p...-spam.html

It's better to implement those one.
And how to include anonym link refer with that idea? Smile
This is a great idea so I made a plugin for it http://community.mybboard.net/thread-54469.html
(2009-08-09, 09:58 AM)TimB. Wrote: [ -> ]This is a great idea so I made a plugin for it http://community.mybboard.net/thread-54469.html

Is good Tim, I preffer to do it manually Wink
Does either the manual edit or the plugin interefere with the Multi Video Mycode Pack For MyBB?

http://mods.mybboard.net/view/multi-vide...e-for-mybb
(2009-08-09, 05:58 AM)FBI Wrote: [ -> ]Thanks Matt Smile

regarding this http://en.wikipedia.org/wiki/Nofollow
and this http://googleblog.blogspot.com/2005/01/p...-spam.html

It's better to implement those one.
And how to include anonym link refer with that idea? Smile

If we use anonym.to:

$link = "<a href=\http://anonym.to/?\"$fullurl\" target=\"_blank\" rel=\"nofollow\">$name</a>"; 

But you can use a script to anonimyze all you links, You can add it on the footer:
<script src="http://js.anonym.to/anonym/anonymize.js" type="text/javascript"></script>

<script type="text/javascript"><!--
protected_links = "";

auto_anonymize();
//--></script>

(2010-02-06, 04:53 AM)Torengo Wrote: [ -> ]Does either the manual edit or the plugin interefere with the Multi Video Mycode Pack For MyBB?

http://mods.mybboard.net/view/multi-vide...e-for-mybb

No, It works fine.
thanks
thanks Rafael Smile
Pages: 1 2