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

I want to remove the "Add Excerpt" field on the question form. See below for what it looks like:

How I can remove or hide this field?

by
I was able to remove the field by running this query in the database:

update qa_options set content = 0 where title = 'it_excerpt_field_enable';
commit;

But I would expect there to be a setting available from the Admin options where I could enable/disable this feature without having to query the database directly.

Please log in or register to answer this question.

...