Hi, you can do that by adding the code below in your theme functions.php file
add_filter( "adverts_form_load", "customize_adverts_add" );
function customize_adverts_add( $form ) {
if( $form['name'] != "advert" ) {
return $form;
}
foreach( $form["field"] as $key => $field ) {
if( $field["name"] == "post_content" ) {
$form["field"][$key]["validator"] = array();
}
}
return $form;
}