Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
make nofollow links follow for either user or domain
ptoone
New
I am looking to disable some nofollow links in vanilla. There doesn't seem to be any option other than editing core files which I know is not the right thing to do. I tried building a plugin to achieve this but I am not familiar with the core code of vanilla.
Is anyone able to shed some light on best way to achieve this?
0
Comments
You would need to set
Gdn_Format::$DisplayNoFollow = false;
This is static value so is not instance based.You can stick that in a
conf/bootstrap.before.php
file.grep is your friend.