在查看类别中的产品时,我希望在 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
我需要定义这个“全部”还是我的语法不正确?据我所知,此方法可按要求工作,但仍会出现此错误。