我想将Opencart中评论的下限字符限制从25移除到0,但我找不到控制它的代码。
有人可以帮帮我吗?
由于
答案 0 :(得分:3)
在函数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或所需的最小字符数。
答案 1 :(得分: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);