Minimum tags, I enter 0, and it goes back to 1?
Hello,
I can see the bug in my install as well. Please add below hook for now (we will add a fix in next release). You can get more info about tags field here AnsPress_Tag::ap_question_form_fields().
/** * Set minimum tags required to 0. */ function my_ap_question_form_fields( $form ) { if ( isset( $form['field']['tags'] ) ) { $form['field']['tags']['array_min'] = 0; } return $form; } add_action( 'ap_question_form_fields', 'my_ap_question_form_fields', 99 );
wpcrafter commented on answer
I did try this, but it didn’t work, the requirement was still there. To make it easier for me, I just disabled tags alltogether.