Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
382 views
in Q2A Core by
How to remove the command "no follow" from all the links

1 Answer

0 votes
by

http://www.question2answer.org/qa/8364/how-to-remove-nofollow-for-links-to-own-website

Although if you want to remove it from all links (bad idea IMO because it may encourage spam) then you could replace preg_replace with str_replace('rel="nofollow"', '', $str );

by
Where is this code? Which page?
by
Read my answer on that page - you need to create a custom theme.

One alternative would be to hack the core, see qa-app-format.php, lines 679 and 693. Just remove the bit that says rel=nofollow.
...