I am using version 2.0.2 by the way.
Still waiting. Would really appreciate a response.
Ability to disable ahref tags would make it a lot easier to deal with ‘link spammers’ as this would discourage them to add useless replies/posts. So this is really a basic functionality.
@thetalltree : Take a look at the forum index of bbpress.org, and you’ll notice that there are at least 2 spam posts. SPAM! And what’s even more alarming is that they are still there!
Take my advise, ask elsewhere. (Try asking on wordpress.stackexchange.com)
My $0.02!
This forum is staffed by volunteers. The more you bump and complain is the less likely one of our awesome staffers is to help. It moves too slowly here to bump 4 times a day.
If you decide to post somewhere else, none of us are likely to look there to help.
To answer your question, you’ll need to put a custom filter on WordPress’s kses. A Google search should help you tremendously. If you’re not a developer or not comfortable diving into the code, you’ll want to spend some time learning, or hire someone to help you.
Thanks John for the heads up. This is what I did:
1.) Open Wp-includes > kses.php
2.) Find the following:
$allowedtags = array(
‘a’ => array(
‘href’ => array (),
‘title’ => array ()),
‘abbr’ => array(
‘title’ => array ()),
3.) Remove:
‘a’ => array(
‘href’ => array (),
‘title’ => array ()),
I tried adding // but it does not work, so I removed the tag.
Not sure if what I have done is the right method, but it seems to work.
Some more info here:
https://codex.wordpress.org/Answers-Configuration#Stopping_HTML_in_Comments