2

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

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

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

然后在模板中显示这个header.tpl

<?php echo $total?>
4

1 回答 1

1

Your code should work, but you can also use command $this->cart->countProducts()

于 2020-07-14T13:52:31.363 回答