Showing AnsPress Input Field instead title!

1.68K viewsWordPress#Anspress typeError wordpress
0

Hello,
I change the title length by using this code:

function my_custom_title_field( $form )
{
 $form['fields']['post_title'] = array(
  'max_length' => 600,
 );
return $form;
}
add_filter( 'ap_question_form_fields', 'my_custom_title_field' );


But now the title is changed to ‘AnsPress Input Field.’

Answered question
0

To resolve the title change issue, ensure you’re correctly setting the title field’s label in your Paper io code. Modify the array to include a ‘label’ key for proper display.

Edited answer
You are viewing 1 out of 1 answers, click here to view all answers.