如何在opencart评论中删除字符限制?

时间:2013-08-27 13:20:54

标签: opencart

我想将Opencart中评论的下限字符限制从25移除到0,但我找不到控制它的代码。

有人可以帮帮我吗?

由于

2 个答案:

答案 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);