Make textarea required. Help [closed]

I struggled with this for a while. Give this a try. It’s working on my free theme

add_filter( 'woocommerce_checkout_fields' , 'your_override_checkout_fields' );

function your_override_checkout_fields( $fields ) {
 $fields['order']['order_comments']['required'] = true;
 return $fields;
}