How can I remove the "model required" from the model field in the admin product page in opencart (3.0.3.2), and make it an optional field like the rest of the fields in the data tab? model required screenshot.
I am tried to hide this piece of Code but (click to see) isn't working
admin\controller\catalog\product.php
/*if ((utf8_strlen($this->request->post['model']) < 1) || (utf8_strlen($this->request->post['model']) > 64)) {
$this->error['model'] = $this->language->get('error_model');
} */