我想将 Opencart 中评论的字符下限从 25 删除到 0,但我找不到控制它的代码。
有人可以帮我吗?
谢谢
catalog/controller/product/product.php
在函数内的文件中更改以下条件public function write()
if ((utf8_strlen($this->request->post['text']) < 25) || (utf8_strlen($this->request->post['text']) > 1000)) {
将 25 替换为 0 或所需的最少字符数。
文件
目录/模型/目录/review.php
线
public function getReviewsByProductId($product_id, $start = 0, $limit = 20)
和
在文件中
/catalog/controller/product/product.php
线
$this->model_catalog_review->getReviewsByProductId($this->request->get['product_id'], ($page - 1) * 5, 5);