steve89
asked 6 years ago

Hi,
Is it possible to clear the question form after submiting the question ? Visitors are used to clicking the submit button several times and i have to delete duplicate messages.
Thanks

3 Answers
DominicStaff
answered 6 years ago

At the moment, the plugin can not clear the form after submitting a question, I have sent and notified to our technical team about this issue, we will check and resolve this issue in the next version.

steve89
replied 6 years ago

Ok, thanks Dominic.

Similarly, only the title of the question is required. Description should be required because some people just fill the title and it’s a strange behaviour

DominicStaff
answered 6 years ago

You can open the Handle.php file in the plugins/dw-question-answer-pro/inc folder then add the following code to line 411.

if ( empty( $_POST['question-content'] ) ) {
dwqa_add_notice( __( 'You must enter a valid question content.', 'dwqa' ), 'error' );
return false;
}
steve89
answered 6 years ago

Great, it works perfectly, thanks again Dominic !

Powered by DW Question & Answer Pro