MyBB Community Forums

Full Version: Change Users Website URL to NOFOLLOW - Support
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
I've just submitted a plugin that adds this functionality. It also adds rel="nofollow" to the website link on user profile pages.
In 1.6 version, the template's name is "postbit_www" and if you want to make some changes..

BEFORE
<a href="{$post['website']}" target="_blank"><img src="{$theme['imglangdir']}/postbit_www.gif" alt="{$lang->postbit_website}" title="{$lang->postbit_website}" /></a>

AFTER
<a href="{$post['website']}"rel="nofollow" target="_blank"><img src="{$theme['imglangdir']}/postbit_www.gif" alt="{$lang->postbit_website}" title="{$lang->postbit_website}" /></a>
(2011-05-05, 07:44 AM)vcode Wrote: [ -> ]In 1.6 version, the template's name is "postbit_www" and if you want to make some changes..

BEFORE
<a href="{$post['website']}" target="_blank"><img src="{$theme['imglangdir']}/postbit_www.gif" alt="{$lang->postbit_website}" title="{$lang->postbit_website}" /></a>

AFTER
<a href="{$post['website']}"rel="nofollow" target="_blank"><img src="{$theme['imglangdir']}/postbit_www.gif" alt="{$lang->postbit_website}" title="{$lang->postbit_website}" /></a>

And how can we do it in signature ?
I think there is a mod for signatures, ok found the plugin and it does both
http://mods.mybb.com/view/nofollow-signatures
Pages: 1 2 3