How do I remove character limit in opencart reviews?
Change the below condition in file catalog/controller/product/product.php
within the function public function write()
if ((utf8_strlen($this->request->post['text']) < 25) || (utf8_strlen($this->request->post['text']) > 1000)) {
Replace 25 with 0 or the minimum number of characters needed.