Disable description field on ask question form

Solved5.27K viewsGeneralask form description
0

How to delete / disable the description field on ask question forms. If the questions is short then it becomes redundant for user to type it twice.

I found the code snippet on deprecated.php that maybe relevant with it ap_get_ask_form_fields()

If it’s the correct code, could you tell me how to override it ?. Thanks

Question is closed for new answers.
selected answer
1

Hello,

You have to use ap_question_form_fields hook to filter question fields. Then just

unset( $form[’fields’][’post_content’] );

selected as best answer
You are viewing 1 out of 2 answers, click here to view all answers.