Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
321 views
in Q2A Core by

1 Answer

+2 votes
by

This could be done in your theme, or a layer override plugin. (Look up Advanced Themes or Layer Plugins in the docs.) Override the form_fields() function, something like this:

public function form_fields($form, $columns)
{
    if ($this->template == 'ask' && isset($form['fields']['content'])) {
        unset($form['fields']['content']);
    }

    parent::form_fields($form, $columns);
}
...