|
|
|
|
|
|
|
Re: how to hide [message #164354 is a reply to message #161583] |
Sat, 29 January 2011 01:48 |
barefootliam
Messages: 2 Registered: September 2010 Location: Milford, ON, Canada
Karma: 0
|
Junior Member |
|
|
I hope you mean, rel="nofollow" and not, ref=nofollow...
It would be nice if FUDForum could add this automatically to all links, as well as to links in the signature.
|
|
|
Re: how to hide [message #164355 is a reply to message #164354] |
Sat, 29 January 2011 13:15 |
Ernesto
Messages: 413 Registered: August 2005
Karma: 0
|
Senior Member |
|
|
Quote:It would be nice if FUDForum could add this automatically to all links, as well as to links in the signature.
I wouldn't like that at all.
rel="nofollow" have no relevance on SEO or pagerank today.
It is also not advisable to present one thing to a search engine and another thing to the users, that will quickly give you penalties and your pagerank will be lower than it has ever been.
External links is not bad for your SEO either.
Ginnunga Gaming
|
|
|
Re: how to hide [message #164356 is a reply to message #164355] |
Sat, 29 January 2011 20:23 |
barefootliam
Messages: 2 Registered: September 2010 Location: Milford, ON, Canada
Karma: 0
|
Junior Member |
|
|
Ernesto, well, I meant as an option. And from working on pagerank 9 and 10 pages, I know that rel="nofollow" still does make a difference because of being contacted by people at Google. (Of course, pagerank is only one of over 200 metrics used by Google in ranking earch results, and has much less effect that it used to). But the other difference it makes is that it discourages some kinds of link spam. So, I'd like it as an option. I am not, by the way, suggesting presenting one thing to one search engine and another to users, and, some external links are good and some can be bad. Or maybe we can agree to disagree on whether it's bad or good or makes a difference, and agree only that some people might like an option to have such an attribute added in some cases, OK?
|
|
|
Re: how to hide [message #164359 is a reply to message #164356] |
Sun, 30 January 2011 10:35 |
Ernesto
Messages: 413 Registered: August 2005
Karma: 0
|
Senior Member |
|
|
If it had a bearing on page rank (it actually used to, long ago) then people start adding it everywhere to linkshape. Since then google for example, doesn't follow the links, it means that the end users, meaning the ones that searches on google, will get a worse experience, since googlebot can never find anything, since everyone added rel="nofollow" to increase their pagerank.
It is a counter-productive practice and to follow the google motto: "Make the pages for users, not for search engines" applies.
If you have a problem with spam, that is another issue and not something that should be solved by rel="nofollow", since that would "ruin" all legitimate links.
While I agree that options are good, what if everyone still believes old rumours that it will make their page appear better in google search results, well, then everyone will enable it and boom, link crawling has effectively either been put out of comission, or search engines will be forced to ignore the rel="nofollow" tag.
Best practice is to use the nofollow tag on things you do not want the engine to follow, for example "Reply" "Register" "New Topic" etc.
( http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=965 69)
http://searchenginewatch.com/3633972
http://twitter.com/mattcutts/status/2013680604
Quote:Hey, did you hear our latest inside tip? Make relevant content.
That is of course just my opinion and I can be wrong like everyone else
Ginnunga Gaming
|
|
|
Re: how to hide [message #164360 is a reply to message #164359] |
Sun, 30 January 2011 10:41 |
Ernesto
Messages: 413 Registered: August 2005
Karma: 0
|
Senior Member |
|
|
Anyhow, if you want to change the behaviour, you should look in the post_proc.inc.t file
Find the following code and alter after your own desire:
while (preg_match('!<a href="(.+?)" target="_blank">\\1</a>!is', $fudml)) {
$fudml = preg_replace('!<a href="(.+?)" target="_blank">\\1</a>!is', '[url]\1[/url]', $fudml);
}
To make things backwards compatible, you should create a new code also that reads the old, replaces with the new, else old links posted prior to your change will "break" if a message is edited.
Good luck!
Ginnunga Gaming
|
|
|
Re: how to hide [message #164361 is a reply to message #164360] |
Sun, 30 January 2011 10:42 |
Ernesto
Messages: 413 Registered: August 2005
Karma: 0
|
Senior Member |
|
|
Come to think of it, I am sure the line of code you are looking for does not look the same as in my version of the forum. Should still give you an idea where to look though!
Ginnunga Gaming
|
|
|
|