标签: opencart opencart-module opencart2.3
我需要在标题中显示购物车中的商品数量。
我尝试将header.php文件编辑为:
header.php
$products = $this->cart->getProducts(); $data['total'] = count($products);
然后在模板header.tpl中显示:
header.tpl
<?php echo $total?>
答案 0 :(得分:1)
您的代码应该可以使用,但是您也可以使用命令$this->cart->countProducts()
$this->cart->countProducts()