如何在标题打开购物车中显示购物车中的计数物品?

时间:2017-01-19 07:23:38

标签: opencart opencart-module opencart2.3

我需要在标题中显示购物车中的商品数量。

我尝试将header.php文件编辑为:

$products = $this->cart->getProducts();
$data['total'] = count($products);

然后在模板header.tpl中显示:

<?php echo $total?>

1 个答案:

答案 0 :(得分:1)

您的代码应该可以使用,但是您也可以使用命令$this->cart->countProducts()

相关问题