0

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

有人可以帮我吗?

谢谢

4

2 回答 2

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 或所需的最少字符数。

于 2013-08-28T08:08:23.893 回答
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);
于 2013-08-27T20:02:36.850 回答