Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
558 views
in Q2A Core by
I'm just talking about the check-box being blank and let the person opt in. I have dug around in the code but I am a bit confused. It would be nice if people had to click to be notified.  



And thanks for the great software and support. If you are ever in Portland I will buy you a pizza.

1 Answer

+3 votes
by
 
Best answer
This is a good candidate for an option in a future version. In the meantime you can change it as follows:

Questions: modify this in qa-page-ask.php:

$innotify=true;
... to ...
$innotify=false;

Answers: modify this in qa-page-question.php:

isset($innotify) ? $innotify : true
... to ...
isset($innotify) ? $innotify : false

For comments, it's off by default anyway.
by
Can it be turned on for comments by default? I like the default being on, for questions certainly but perhaps comments also. I think it's likely to build community quicker and minimize one-time visitors who ask a question but never come back to check responses.
by
This is a little different because of how the flow is structured - you should replace the following line in the function qa_page_q_do_comment(...) in qa-page-question-post.php:

$formtype='c_add';

... with ...

$formtype='c_add'; unset($innotify);
by
Wow, you sure are on top of this! Thanks Gideon.
by
Thanks.. It worked perfectly. The support here is amazing.
...