Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
294 views
in Q2A Core by
Hi,

 

Is is possible to disable hyperlinking. This can help me to stop spam.

 

Thanks in advance.

1 Answer

0 votes
by

You could write a plugin which overrides qa_sanitize_html(...) in qa-base.php, and which modifies the following line:

'elements' => '*+embed+object',

... to ...

'elements' => '*-a+embed+object',

Note that I haven't tried this though!

...