Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
1.2k views
in Q2A Core by
It would be nice to go straight to the page that has all the details when you ask a question.

1 Answer

+1 vote
by
 
Best answer
Excellent question! There isn't yet an option for this, but you can make it happen by replacing this line in qa-page-ask.php:

if (qa_clicked('doask1') || qa_clicked('doask2') || qa_clicked('doask3')) {

... with ...

if (true || qa_clicked('doask1') || qa_clicked('doask2') || qa_clicked('doask3')) {

Note that if you do this, no suggested example tags will appear, because those are calculated from the question title that is usually submitted in the previous page.
by
Perfect.. That is a trade-off I can live with.
by
Perfect, thank you!
by
Would be awesome if in a future version all could happen on one page with the help of Ajax. I think I've seen that on commercial support websites.
...