Hi,
Thank you for your answer.
Where do I have to add the condition ?
The condition is : if post_status = publish {$mark = true}
$meta_boxes[] = [
'title' => esc_html__( 'Signature', 'text-domain' ),
'id' => 'signature',
'post_types' => ['docs'],
'context' => 'normal',
'priority' => 'high',
'fields' => [
[
'id' => $prefix . 'signature_appli',
'name' => "Signature",
'type' => 'password',
],
],
'validation' => array(
'messages' => array(
'signature_appli' => array(
'required' => 'You have to sign.',
),
),
),
'visible' => array(
'when' => array(
array( 'post_status','=', 'attente_app'),
array( 'post_status','=', 'publish')
),
'relation' => 'or'
),
];