Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Apr 29: Q2A 1.5.2

How do I move the answer form below the current answers?

+2 votes
Q2A version: 1.5
asked Dec 17, 2011 in Q2A Core by edward

2 Answers

+3 votes
 
Best answer

Add this to your custom theme:

        function doctype()
        {
            qa_html_theme_base::doctype();
            if(isset($this->content['a_form'])) {
                $a_form = $this->content['a_form'];
                unset($this->content['a_form']);
                $this->content['a_form'] = $a_form;
            }
        }

answered Dec 27, 2011 by NoahY
edited Jan 23 by DisgruntledGoat
Thanks NaohY, It really worked...
How to do it by making a advance theme ?
0 votes
I believe you need to create an advanced-theme.

I'm almost positive you want to modify qa-include/qa-page-question-view
You can modify the layout in your advanced theme.  Otherwise very simple updates will always break your changes.
answered Dec 17, 2011 by stanleytweedle
Thanks. Do you know which function I should override in my advanced theme?