Opencart show下拉错误

时间:2013-02-07 11:48:10

标签: php e-commerce opencart

我希望在查看类别中的产品时,在opencart网站的“显示”下拉菜单中显示“全部”。我被告知要以正确的方式进行大量的编码,所以我只是调整了代码如下:

$this->data['limits'][] = array(
    'text'  => "All",
    'value' => 5000,
    'href'  => $this->url->link('product/category', 'path=' . $this->request->get['path'] . $url . '&limit=5000')
);

这似乎在我的错误日志中给出了如下错误:

2013-02-07 11:22:12 - PHP Notice:  Use of undefined constant All - assumed 'All' in /home/a6997914/public_html/catalog/controller/product/search.php on line 373

我是否需要定义此“全部”或我的语法不正确?据我所知,此方法可以根据需要正常工作,但仍能提供此错误。

1 个答案:

答案 0 :(得分:1)

您显示的行是product / category.php而不是seacrh.php

打开你的目录/ controller / product / search.php 我相信你在那里使用ALL而不是像“ALL”这样的引号。使用“ALL”,错误应该消失